- 浏览: 98219 次
- 性别:
- 来自: 深圳
最新评论
-
kakamimika:
貌似不行吧
jquery读取xml文件示例 -
momofiona:
第二版本:http://dl.dropbox.com/u/ ...
popBaseball拖动插件分析
文章列表
if(n.nodeType)==1
//NodeType list
Element 1
Text 3
Document 9
Comment 8
DocumentFragment 11
Attr 2
if (!window.Node) {
var Node = {
ELEMENT_NODE: 1,
ATTRIBUTE_NODE: 2,
TEXT_NODE: 3,
...
navigator对象
8.2浏览器的检测方式
1.对象/特征检测法
eg.if(document.getElementById){
//some code
}else{
//some code
}
如果document.getElementById不被支持,则返回undefined,转成boolean,则就是false,所以可以用些方法来检测.
2.user-agent字符串检测法.
userAgent属性.
var sUserAgent=navigator.userAgent;
返回一些基本的字符串.不同浏览器,不同的.
下面为一些基本的..仅供参考
...
- 2009-03-10 22:12
- 浏览 16858
- 评论(0)
[size=large][/size]定位
//for ie
oDiv.onclick=function(){
var oEvent=window.event;
}
//for Dom
oDiv.onclick=function(){
var oEvent=arguments[0];
}
//可直接命名参数,访问就更方便
oDiv.onclick=function(oEvent){
//for some code;
}
ie事件的一些属性及方法
altKey true代表按下alt键,false代表没有;
button 0 未按下按纽
1 按下左键;
...
- 2009-03-04 21:29
- 浏览 1222
- 评论(0)