$("#content").css({"background-color":"red","color":"#fff"});
css里面有个对大括号
css里面有个对大括号
2016-04-15
$("#frmTest :checked").attr("disabled", true);
2016-04-15
$("#frmTest :button").addClass("bg_blue");
2016-04-15
是否缺少“input”, <button>按钮通常也被认为是提交按钮,为更好区分,只要在:submit选择器之前添加“input”符号
2016-04-15
#frmTest”与“:input”选择器之间是否存在空格。
$("#frmTest :input").addClass("bg_blue");
$("#frmTest :input").addClass("bg_blue");
2016-04-15
花了点时间写了这个 小小的得意 求评价
$(function (){
$('li:gt(2):not(:last)').hide();
$('a').click(function(){
var aContent=$('a').text();
if(aContent=='更多'){
$('a').text("简化");
$('li:hidden').show();
}else{
$('a').text("更多");
$('li:gt(2):not(:last)').hide();
}
})
})
$(function (){
$('li:gt(2):not(:last)').hide();
$('a').click(function(){
var aContent=$('a').text();
if(aContent=='更多'){
$('a').text("简化");
$('li:hidden').show();
}else{
$('a').text("更多");
$('li:gt(2):not(:last)').hide();
}
})
})