-
四类选项卡查看全部
-
不自己试着打一下还真没发现问题,一直不明白为什么 oUl[this.id].style.display = 'block';这句话不能是oUl[i].style.display = 'block';原来是最后i已经变成了3了查看全部
-
var that = this; //用that这个变量来引用当前划过的li查看全部
-
晕菜,原来JS里面不能用 var i+=1 这类的代码查看全部
-
顶了,讲的好细查看全部
-
老师讲的真心好,赞一个~查看全部
-
setInterval()的使用方法查看全部
-
Tab 轮播效果 最终版查看全部
-
倒计时 最终版查看全部
-
Tab 选项卡 最终版查看全部
-
Tab选项卡 先试试查看全部
-
typeof 判断字符类型 用法:http://www.jb51.net/article/44372.htm查看全部
-
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript"> window.onload=function(){ var send=document.getElementById('send'), times=60, timer=null; send.onclick=function(){ // 计时开始 send.value=times+"秒后重试"; send.disabled='true'; timer=setInterval(function(){ if (!times){ clearInterval(timer); timer=null; times=60; send.value="发送验证码"; send.disabled=0; return; } times--; send.value=times+"秒后重试"; },1000) } } </script> </head> <body> <input type="button" id="send" value="发送验证码" > </body> </html>查看全部
-
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> <script type="text/javascript"> window.onload=function(){ var send=document.getElementById('send'), times=60, timer=null; send.onclick=function(){ // 计时开始 send.value=times+"秒后重试"; send.disabled='true'; timer=setInterval(function(){ if (!times){ clearInterval(timer); timer=null; send.value="发送验证码"; send.disabled=0; return; } times--; send.value=times+"秒后重试"; },1000) } } </script> </head> <body> <input type="button" id="send" value="发送验证码" > </body> </html>查看全部
-
<!doctype html> <html lang="en"> <meta charset="utf-8"> </html>查看全部
举报
0/150
提交
取消