web前端
super微
这个作者很懒,什么都没留下…
展开
-
js中this和that
that换成this;setInterval和setTimeout属于window的方法,window为它们的对象。翻译 2015-11-21 22:05:05 · 6544 阅读 · 0 评论 -
浅谈tab选项卡制作思想
这两天一直在制作tab选项卡,今天终于准确快速的制作出一个tab选项卡。在这说一下我制作的思想流程。无标题文档*{margin:0;padding:0;list-style:none;}.wrap{position:relative;width:320px;height:240px;overflow:hidden;margin:1原创 2015-11-23 09:11:32 · 330 阅读 · 0 评论 -
tab选项卡切换问题
今天做了一个tab选项卡切换的编码,代码写完,图片可以自动切换,但是鼠标移入再移除,图片不再自动切换,看了就才发现是这里出错了: window.onload=function(){ var wrap=document.getElementById('wrap'), pic=document.getElementById('pic'),lists=document.getElem原创 2015-11-22 21:09:12 · 756 阅读 · 0 评论 -
Uncaught TypeError: Cannot read property 'getElementsByTagName' of null
在做一个一个tab选项卡时,在window.onload中获取几个参数,代码为: //获取鼠标滑过或点击的标签和内容的元素 var titles=$('notice-tit').getElementsByTagName('li'), divs=$('notice-con').getElementsByTagName('div');结果报错:Unca原创 2015-11-21 20:31:48 · 11617 阅读 · 0 评论