最新回答 / 天神无所不能
onmouseover :当鼠标浮动到本身和子元素时候都会触发 建议使用 onmouseenter onmouseleave替换 这个只在元素本身触发
2016-07-03
最赞回答 / rainy_li3676598
老师讲的不一定对,下面的解答也有很多有错误的, 不能完全相信别人。 自己多动手试验就知道了 其实, ul的宽度设300就够了,301反而是错的, 你把tit的css里面的overflow:hidden去掉, 再给ul的CSS加一个 background: red; 你就会发现, 其实设为301px, 反而多出来了一个像素。因为不管你是否有浮动1px,tit的宽度始终只有 298px+2px(border)的宽度,只是在老师的程序里面,她设了一个overflow:hidden 你看不到而已你把ul宽设...
2016-06-03
最新回答 / renyi3916741
window.onload=function(){ var send=document.getElementById('send'), times=60, timer=null; send.onclick=function(){ timer=setInterval(function(){ times--; if(times<=0){ send.value=...
2016-05-16