Javascript的事件绑定主要有四种方法(一下在IE中运行正常,但不保证其他浏览器):
[注:onXXX为某一事件,fun为某一function,domId为某一DOM对象id,event类型见后边附录。]
1、在DOM中,直接用onXXX="fun();"进行绑定
2、在Javascript代码中用 DOM对象.onXXX=fun 进行绑定
3、用 DOM对象.attachEvent("onXXX",fun) 进行绑定
4、用<script for="domId" event="onXXX">fun();</script> 进行绑定
<html>
<head>
<title>event test</title>
</head>
<body onload="init()">
<!-- 绑定方式一:在元素中,通过onXXX(事件)设置绑定方法 -->
<button id="btn1" onclick="display()" >绑定方式一</button>
<!-- 绑定方式二:在Javascript代码中,通过获得元素,为元素的onXXX(事件)设置绑定方法 -->
<button id="btn2">绑定方式二</button>
<!-- 绑定方式三:通过for、event为元素绑定事件(IE4+)。for后面是元素id,event是具体事件 -->
<button id="btn3">绑定方式三</button>
<!-- 绑定方式四:通过attachEvent为元素绑定事件(IE5+)。第一个参数是事件名,第二个参数是绑定的方法 -->
<button id="btn4">绑定方式四</button>
</body>
</html>
<script type="text/网页特效">
function init() {
document.getElementById("btn2").onclick = display;//为button2绑定事件
document.getElementById("btn4").attachEvent("onclick", display);//为button4绑定事件
}
function display(event) {
var targ;//触发事件的对象引用
if (!event) {
var event = window.event;//获得当前事件(IE)
}
if (event.target) {//IE没有target
targ = evente.target;
} else if (event.srcElement) {//适用于IE
targ = event.srcElement;
}
//对触发事件的对象进行操作
alert(targ.tagName+"-"+targ.id+"-"+event.x+"-"+event.offsetX);
targ.disabled="disabled" ;
}
<script>
<script for="btn3" event="onclick">
display();//为button3绑定事件
<script>
实例
var $=function(){
}
$.isie= navigator.appName == 'Microsoft Internet Explorer';
if($.isie){
$.bind=function(obj,eve,fun){
if(obj.arr){
}else{
obj.arr=[];
}
if(obj.arr.length>0){
for(var i=0;i<obj.arr.length;i++){
if(obj.arr[i].e==eve){
obj.arr[i].f.push(fun);
break;
}
}
}else{
obj.arr.push({e:eve,f:[fun]});
}
var AddEventToObj=function(inx){
obj["on"+obj.arr[inx].e]=function(){
for(var i=0;i<obj.arr[inx].f.length;i++)
obj.arr[inx].f[i]();
}
}
for(var i=0;i<obj.arr.length;i++){
AddEventToObj(i);
}
}
}else{
$.bind = function(obj,eve,fun){
obj.addEventListener(eve,fun,false);
}
}
$.bind(window,"load",function(){alert('x1')})
$.bind(window,"load",function(){alert('x2')})
$.bind(window,"load",function(){alert('x3')})
$.bind(window,"load",function(){alert('x4')})
$.bind(window,"load",function(){alert('x5')})
$.bind(window,"load",function(){alert('x6')})
$.bind(window,"load",function(){alert('x7')})
$.bind(window,"load",function(){alert('x8')})
IE event属性:
srcElement :对于生成事件的 Window 对象、Document 对象或 Element 对象的引用。
toElement: 对于 mouseo教程ver 和 mouseout 事件,该属性引用移入鼠标的元素。
x,y: 事件发生的位置的 x 坐标和 y 坐标,它们相对于用CSS动态定位的最内层包容元素
cancelBubble: 如果事件句柄想阻止事件传播到包容对象,必须把该属性设为 true。
fromElement :对于 mouseover 和 mouseout 事件,fromElement 引用移出鼠标的元素。
keyCode :对于 keypress 事件,该属性声明了被敲击的键生成的 Unicode 字符码。对于 keydown 和 keyup 事件,它指定了被敲击的键的虚拟键盘码。虚拟键盘码可能和使用的键盘的布局相关。
offsetX,offsetY :发生事件的地点在事件源元素的坐标系统中的 x 坐标和 y 坐标。
returnValue: 如果设置了该属性,它的值比事件句柄的返回值优先级高。把这个属性设置为 fasle,可以取消发生事件的源元素的默认动作。