$('li').each(function(index,element){
if(index%2==0){
$(this).css('color','blue')
}
})
if(index%2==0){
$(this).css('color','blue')
}
})
2016-06-23
if (!$("p").length) return; //去重
!$("p").length == true
$("p").length == false
$("p").length == 0
如果没有p元素就不用detach
!$("p").length == true
$("p").length == false
$("p").length == 0
如果没有p元素就不用detach
2016-06-18
<script type="text/javascript">
$(function(){
$("button").bind("click",function(){
$("#test").empty();
})
})
</script>
$(function(){
$("button").bind("click",function(){
$("#test").empty();
})
})
</script>
2016-06-17
$( "html" ).parent()方法返回一个包含document的集合,而$( "html" ).parents()返回一个空集合。 这是为什么
2016-06-12