123456789101112131415161718192021222324 |
- // window对象方法
- // 1.scrollTo(x,y)
- // 2.scrollBy(x,y)
- // 3.alert() 警告框 window.alert
- // 4.prompt("默认提示内容",默认内容) 输入框
- // prompt("请输入年级",18);
- // 5.confirm() 确认框
- // confirm("你好么")
- // 定时器
- // setInterval(执行的方法,间隔的时间)
- // 清除定时器 clearInterval()
- // document.getElementById("id名字")
- // document.getElementById("btn")
- // setTimeOut 延时器
- // clearTimeout() 清除延时器
- var btn = document.getElementById("btn");
- // console.log(btn)
- btn.onclick = function() {
- // console.log("打印")
- setTimeout(function(){
- console.log("打印")
- },3000)
- // clearTimeout()
- }
|