JS实战
1、 jquery取消点击事件
$("#dashboard").unbind("click");
2、jquery绑定鼠标滑过,离开事件
$("#dashboard").mouseover(function(){ $("#dashboard").children("img").attr('src',"/csfma/style/images/dash_1.png"); }); $("#dashboard").mouseleave(function(){ $("#dashboard").children("img").attr('src',"/csfma/style/images/dash_2.png"); }); // img获取与修改src $("#imgId")[0].src; $("#imgId").attr('src',path);
3、 jquery获取属性值
$("#traffic").parent("li").attr("class")
4、 jquery修改带有!important关键字的属性
// 错误 $(id).css("background-color": "#F5F5F5 !important"); // 正确 $(id).css({"cssText": "background-color:#F5F5F5 !important"});