保持JavaScript/DOM在不同浏览器中的通用性
时间:2007-04-17 来源:rcymonkey
这个是IE仅有的,或者说是低版本IE仅有的,高版本的IE都可以用W3C标准来替代document.all,我们可以写一个通用的函数:
//****************************
//我们要尽可能的使用W3C标准的东西
//如果浏览器支持 document.getElementById(),那么首选就使用 document.getElementById() 来获取对象
//如果浏览器不支持 document.getElementById() 但是支持 document.all[],那么就用 document.all[] 来获取对象
//如果浏览器既不支持 document.getElementById() 也不支持 document.all[],那我们只好放弃了
function findObj(objname)
{
var obj = null;
if (typeof(document.getElementById) != "undefined")
obj = document.getElementById(objname);
else if (typeof(document.all) != "undefined")
obj = document.all[objname];
return(obj);
}
//****************************
我们看一个简单的例子
//***********************************
<HTML>
<HEAD>
<TITLE> findObj </TITLE>
</HEAD>
<BODY>
<form>
<input type="text" name="username" id="username" value="ifan">
<input type="button" value="Get myname" onclick="alert( findObj( 'username' ).value );">
</form>
</BODY>
</HTML>
//***********************************
2、有关 event 和window.event
在IE/Opera中,是window.event,而在Firefox中,是event
而事件的对象,在IE中是window.event.srcElement,在Firefox中是event.target,而在Opera中则两者都支持
我们还是用例子来说明。
//***********************************
<html>
<head>
<title>event的跨浏览器测试</title>
</head>
<body>
<form name="frmtest">
<input type="button" value="event 测试" onclick="doTestEvent(event);" name="bttest">
</form>
</body>
</html>
//***********************************
这里顺便说一下判断鼠标按键的问题。
在 IE 里面
左键是 window.event.button = 1
右键是 window.event.button = 2
中键是 window.event.button = 4
没有按键动作的时候 window.event.button = 0
在 Firefox 里面
左键是 event.button = 0
右键是 event.button = 2
中键是 event.button = 1
没有按键动作的时候 event.button = 0
在 Opera 7.23/7.54 里面
鼠标左键是 window.event.button = 1
没有按键动作的时候 window.event.button = 1
右键和中键无法获取
而在 Opera 7.60/8.0 里面
鼠标左键是 window.event.button = 0
没有按键动作的时候 window.event.button = 0
右键和中键无法获取
下面我们写一个能在 IE4.01+/Firefox 9.0+/Opera 7.23+ 环境中均能运行正常的小程序,功能是用鼠标拖动层。
//***********************************
<HTML>
<HEAD>
<TITLE>可用鼠标拖动的层</TITLE>
</HEAD>
<BODY>
<div id="mdiv"
style="position: absolute; width:300px; background-color: #FFFFE1;"
onmousedown="start( event );"
onmouseup="stop( event );"
onmouseout="stop( event );"
onmousemove="move( event );">
</div>