$("#btntest").on( //不支持动态添加的元素
{click:function(){
$(this).attr("disabled","true");
},
mouseout:function(){
$(this).attr("disabled","true");
}}
);
{click:function(){
$(this).attr("disabled","true");
},
mouseout:function(){
$(this).attr("disabled","true");
}}
);
2014-11-09
$("body").on("click mouseout","#btntest",function(){ //支持动态添加的元素
$(this).attr("disabled","true");
});
$(this).attr("disabled","true");
});
2014-11-09
$("#content").css({"color":"white","background-color":"#98bf21"});
$("#content").css("background-color","Red");
$("#content").css("background-color","Red");
2014-11-09
css()包括如下4种用法:
$(selector).css({property:value, property:value, ...}) //多个CSS属性/值对
$(selector).css(name,function(index,value)) //通过函数设置属性值
$(selector).css(name,value)
$(selector).css(name) //获取属性值
$(selector).css({property:value, property:value, ...}) //多个CSS属性/值对
$(selector).css(name,function(index,value)) //通过函数设置属性值
$(selector).css(name,value)
$(selector).css(name) //获取属性值
2014-11-09
从 jQuery 1.7 开始,不再建议使用 .live() 方法。请使用 .on() 来添加事件处理。使用旧版本的用户,应该优先使用 .delegate() 来替代 .live()。--源自w3school的说明
2014-11-08