function click(){
$("a").html()=="( ̄( ̄( ̄ー ̄) ̄) ̄)")?$(".hide").show();$("a").html("( ̄( ̄( ̄( ̄ー ̄) ̄) ̄) ̄)");
:$(".hide").hide();$("a").html("( ̄( ̄( ̄ー ̄) ̄) ̄)");
}
$("a").html()=="( ̄( ̄( ̄ー ̄) ̄) ̄)")?$(".hide").show();$("a").html("( ̄( ̄( ̄( ̄ー ̄) ̄) ̄) ̄)");
:$(".hide").hide();$("a").html("( ̄( ̄( ̄ー ̄) ̄) ̄)");
}
$(function () {
$("#btntest").bind("click mouseout", function() {
$(this).attr("disabled", "true");
})
});
$("#btntest").bind("click mouseout", function() {
$(this).attr("disabled", "true");
})
});
2015-03-20
爱在深秋_0001
drop: function () {
$(this).addClass('focus').find('#tip').html('有产品了');
drop: function () {
$(this).addClass('focus').find('#tip').html('有产品了');
2015-03-20
定义和用法
bind() 方法为被选元素添加一个或多个事件处理程序,并规定事件发生时运行的函数。
将事件和函数绑定到元素
规定向被选元素添加的一个或多个事件处理程序,以及当事件发生时运行的函数。
语法
$(selector).bind(event,data,function)
bind() 方法为被选元素添加一个或多个事件处理程序,并规定事件发生时运行的函数。
将事件和函数绑定到元素
规定向被选元素添加的一个或多个事件处理程序,以及当事件发生时运行的函数。
语法
$(selector).bind(event,data,function)
2015-03-20
$("#content").css({"background-color":"red","color":"white"});
分开写是中间是逗号。汗
$("#content").css("background-color","red");
分开写是中间是逗号。汗
$("#content").css("background-color","red");
2015-03-20
$("#content").css("div"); 然后直接在style.css中加background-color:red; color:white; 不是更方便吗,小编
2015-03-20