摘要:
官方教程http://code.google.com/chrome/extensions/devguide.htmlchrome浏览器开启实验模式:在快捷方式后面加 --enable-experimental-extension-apis 阅读全文
摘要:
<mce:script type="text/javascript"><!-- var speed=30 var MyMar=setInterval(Marquee,speed) demo2.innerHTML=demo1.innerHTML demo.onmouseover=function() {clearInterval(MyMar)} demo.onmouseout=function() {MyMar=setInterval(Marquee,speed)} function Marquee(){ if(demo.scrollLeft<=0) 阅读全文
摘要:
typeof(type_hello) == "undefined" 阅读全文
摘要:
width:300px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;-o-text-overflow:ellipsis;用这个css样式就行了 阅读全文
摘要:
this.userName.setAttribute("style","display:none"); $("...").css({display:"none"}); $("...").hide();以上都不管用,faint只有下面的这个管用this.userName.style.display = "none"; 阅读全文
摘要:
一直觉得他选不上类呀,好多设定都不能生效,必须指定id才可以,估计是我用css3太傲娇了,要加强学习。ie6下是不是没有类这个概念啊,愁死了。 阅读全文
摘要:
chrome下ie6下弄什么display:inline都没用。。把左边那个元素弄成float:left就行了 阅读全文
摘要:
文档中写的是http://docs.jquery.com/Plugins/Autocomplete/autocomplete#url_or_dataoptions可是我这么用var a = new Array();#(..).autocomplete(a);报错this.source is not a function查了一下http://stackoverflow.com/questions/3308935/jquery-autocomplete-this-source-is-not-a-function-error他说要这么写var a = new Array();#(..).autoco 阅读全文