js动态设置鼠标事件示例代码
内容摘要
复制代码 代码如下: obj.onmouseover=function (){ $("#vote").html("赞过了"); } obj.onmouseout=function (){ $("#ssvote").html("赞(" + vote_num+")"); }
文章正文
复制代码 代码如下:
obj.onmouseover=function (){
$("#vote").html("赞过了");
}
obj.onmouseout=function (){
$("#ssvote").html("赞(" + vote_num+")");
}
代码注释