$("#content").css({"background-color":"red","color":"white"});
2016-03-23
$("#content").css({backgroundColor:"red",color:"white"});
2016-03-23
$(document).ready(function(){
$("a").click(function(){if($("a").html()=="简化"){$("a").html(" 更多");$("li:gt(4)").css("display","none");}else {$("a").text("简化"); $("li:gt(4)").css("display","");}}) });
$("a").click(function(){if($("a").html()=="简化"){$("a").html(" 更多");$("li:gt(4)").css("display","none");}else {$("a").text("简化"); $("li:gt(4)").css("display","");}}) });
使用$("li[title='我最爱']")属性选择器代码,获取了2个<li>元素,并调用css()方法设置它们在页面中显示的文字颜色,另外,属性值中的‘’单引号可以不写,由于属性名与属性值是等号,因此,它们之间不是包含关系,而是完全相同。
2016-03-23
li:contains('土豪') 土豪为什么必须加单引号呢?因为它是一个字符串,而不是一个变量,所以不加单或双引号的话是会报错的。
2016-03-23