`
文章列表
文件超长时,设置 overflow:hidden;text-overflow:ellipsis;   只在IE,并且只有当中文的时候好使。
google ajax api:   http://code.google.com/intl/zh-CN/apis/ajax/     google api 试验场:   http://code.google.com/apis/ajax/playground/
jQuery.fn.extend({     closeDlg: function(dlg){alert("dd");} })   //调用 $().closeDlg

jquery plugin url

http://docs.jquery.com/Plugins
以log文件能过editplus打开为例:   第一步:windows===>preferences 第二步:General===>Editors===>File Association 第三步:Add File types,点击Add按钮,添加 *.log 第四步:在下半部分点击"add"按钮,选择“External programs" ,选择Editplus
使用缩写可以帮助减少你CSS文件的大小,更加容易阅读。css缩写的主要规则如下: 颜色 16进制的色彩值,如果每两位的值相同,可以缩写一半,例如: #000000可以缩写为#000;#336699可以缩写为#369; 盒尺寸 通常有下面四种书写方法: property:value1; 表示所有边都是一个值value1; property:value1 value2; 表示top和bottom的值是value1,right和left的值是value2 property:value1 value2 value3; 表示top的值是value1,right和left的值是value2 ...
$("input").bind("myevent",function(event,msg1,msg2){ alert("msg1:"+msg1); }) $("input").click(function(){ $("input").trigger("myevent",["avalue","bvalue"]) });   自定义事件     var Common = {}; C ...
var url = "http://feeds.delicious.com/feeds/json/bob"; $.ajax({ url:url, dataType:"jsonp", success: function(json){ $.each(json,function(i,data){ alert(data.u); }) }, error: function(){alert("error")} })
简介 符合Web2.0特征的众多网站一个明显的特点就是采用Ajax。Ajax提供了在后台提交请求访问数据的功能。其实现主要使用的是XMLHttpRequest函数,这个函数允许客户端的Javascript 发送到服务器端的HTTP请求并获得返回数据。Ajax同时 ...
http://code.google.com/intl/zh-CN/speed/page-speed/download.html
document.getElementById("iframe1").contentDocument.getElementById("iframe_div").offsetHeight   //注意:contentDocument在ie6下报错。
  用惯了Ext的事件监听函数,可以引用this.[function],但发现jquery中不支持这种写法。   Ext写法,这种写法很清析:   var class1 = function(){ hello: "hello", MyFunction: function { Ext.get("div1").addListener("click", this.divClickHandler, this); }, divClickHandler: function(){ //这里可以引用到 ...
到目前为止,DOM事件模型分为三个等级,分别是0级、1级、2级。   0级是最早的,而且目前所有的浏览器仍支持0级DOM模型。 0级模型的注册事件,就是我们经常见到的,如: <input type="button" onclick="buttonClick()"/& ...
nodeType取值范围:   元素类型 节点类型 元素 1 属性 2 文本 3 注释 8 文档 9     元素容易理解,页面中的标签都为元素,那么body标签算不算呢,于是做了个实验,得到body元素,alert它的nodeType,结果是1,证明body是元素。 那什么又是文档呢? 接着alert(document.nodeType),结果是9。
html部分: 检索:<input type="text" name="index" id="index" /> <ul> <li>我的名字叫大笨</li> <li>我是一个中国人</li> <li>个人博客地址是www.deeka.cn</li> <li>学习jQuery有一年了</li> <li>最喜欢的动物是女人</li> <li>最讨厌的动 ...
Global site tag (gtag.js) - Google Analytics