document.createElement创建的元素有哪些属性和方法。
其他常用JS原生DOM方法。
Vue.js钩子函数的执行顺序。和data()里赋值操作的先后关系。
Vue.js 的过渡系统
移动调试步骤:移动调试那些事
form提交生成的新页面是可以在新窗口打开的
通过window.open打开新窗口时设置name,可以通过name在子窗口内进行js操作
document.open可以重新替换页面html内容
<html>
<head>
<script type="text/javascript">
function createNewDoc()
{
var newDoc=document.open("text/html","replace");
var txt="<html><body>Learning about the DOM is FUN!</body></html>";
newDoc.write(txt);
newDoc.close();
}
</script>
</head>
<body>
<input type="button" value="Write to a new document"
onclick="createNewDoc()">
</body>
</html>
setInterval和clearInterval的用法
<html>
<body>
<input type="text" id="clock" size="35" />
<script language=javascript>
var int=self.setInterval("clock()",50)
function clock()
{
var t=new Date()
document.getElementById("clock").value=t
}
</script>
</form>
<button onclick="int=window.clearInterval(int)">
Stop interval</button>
</body>
</html>