- 浏览: 436415 次
- 性别:
- 来自: 北京
最新评论
-
fred7510:
死的啊。。不过还是谢了
flex 截图 -
hechuanshan:
flex状态及动画 -
Da嗒_Sunny:
求使用说明
flex图片裁剪 -
wapj23:
...
flex中定制右键菜单 -
lion_leon:
谢谢!帮了我的大忙了!
利用flashvars给flash传值
文章列表
文件超长时,设置
overflow:hidden;text-overflow:ellipsis;
只在IE,并且只有当中文的时候好使。
- 2009-06-29 17:15
- 浏览 2136
- 评论(0)
google ajax api:
http://code.google.com/intl/zh-CN/apis/ajax/
google api 试验场:
http://code.google.com/apis/ajax/playground/
- 2009-06-24 14:06
- 浏览 1213
- 评论(0)
jQuery.fn.extend({
closeDlg: function(dlg){alert("dd");}
})
//调用
$().closeDlg
- 2009-06-23 13:48
- 浏览 2708
- 评论(0)
以log文件能过editplus打开为例:
第一步:windows===>preferences
第二步:General===>Editors===>File Association
第三步:Add File types,点击Add按钮,添加 *.log
第四步:在下半部分点击"add"按钮,选择“External programs" ,选择Editplus
- 2009-06-18 14:23
- 浏览 1113
- 评论(0)
使用缩写可以帮助减少你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 ...
- 2009-06-16 18:21
- 浏览 861
- 评论(0)
$("input").bind("myevent",function(event,msg1,msg2){
alert("msg1:"+msg1);
})
$("input").click(function(){
$("input").trigger("myevent",["avalue","bvalue"])
});
自定义事件
var Common = {};
C ...
- 2009-06-09 11:32
- 浏览 7832
- 评论(0)
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")}
})
- 2009-06-09 09:56
- 浏览 2906
- 评论(0)
简介
符合Web2.0特征的众多网站一个明显的特点就是采用Ajax。Ajax提供了在后台提交请求访问数据的功能。其实现主要使用的是XMLHttpRequest函数,这个函数允许客户端的Javascript
发送到服务器端的HTTP请求并获得返回数据。Ajax同时 ...
- 2009-06-08 18:16
- 浏览 8399
- 评论(0)
http://code.google.com/intl/zh-CN/speed/page-speed/download.html
- 2009-06-08 16:37
- 浏览 1099
- 评论(0)
document.getElementById("iframe1").contentDocument.getElementById("iframe_div").offsetHeight
//注意:contentDocument在ie6下报错。
- 2009-06-08 15:53
- 浏览 1249
- 评论(0)
用惯了Ext的事件监听函数,可以引用this.[function],但发现jquery中不支持这种写法。
Ext写法,这种写法很清析:
var class1 = function(){
hello: "hello",
MyFunction: function {
Ext.get("div1").addListener("click", this.divClickHandler, this);
},
divClickHandler: function(){
//这里可以引用到 ...
- 2009-06-03 17:55
- 浏览 1226
- 评论(0)
到目前为止,DOM事件模型分为三个等级,分别是0级、1级、2级。
0级是最早的,而且目前所有的浏览器仍支持0级DOM模型。
0级模型的注册事件,就是我们经常见到的,如:
<input type="button" onclick="buttonClick()"/& ...
- 2009-06-03 17:41
- 浏览 2688
- 评论(0)
nodeType取值范围:
元素类型
节点类型
元素
1
属性
2
文本
3
注释
8
文档
9
元素容易理解,页面中的标签都为元素,那么body标签算不算呢,于是做了个实验,得到body元素,alert它的nodeType,结果是1,证明body是元素。
那什么又是文档呢?
接着alert(document.nodeType),结果是9。
- 2009-06-03 15:59
- 浏览 2665
- 评论(0)
html部分:
检索:<input type="text" name="index" id="index" />
<ul>
<li>我的名字叫大笨</li>
<li>我是一个中国人</li>
<li>个人博客地址是www.deeka.cn</li>
<li>学习jQuery有一年了</li>
<li>最喜欢的动物是女人</li>
<li>最讨厌的动 ...
- 2009-06-02 11:35
- 浏览 2750
- 评论(0)