JS怎么设置对象的onclick事件

2024-11-08 11:36:47
推荐回答(3个)
回答(1):

//给div加点击事件
dclose.onclick=function(){
    
}

还有你确定实现鼠标在图片上的时候换图片不是用onmouseover和onmouseout?

回答(2):

dclose.onclick=function(){document.getElementById("close").src="u1.jpg";}

回答(3):

dclose.onclick=function(){
if(this.getElementsByTagName("img")[0].src=="../../images/close1.gif"){
this.getElementsByTagName("img")[0].src="../../images/close2.gif";
}
}

是这样嘛?