<script type="text/javascript">
$("#test1").click(function(event) {
$('li').eq(2).css('background-color', 'red');
})
$("#test2").click(function(event) {
$('li').filter(':even').css('background-color', 'blue');
})
$("#test3").click(function(event) {
$('li').not(':even').css('background-color', 'red');
})
$("#test4").click(function(event) {
$('ul.level-2').children().css('background-color', 'yellow');
})
$("#test5").click(function(event) {
$('li.item-a').closest('ul')
.css('background-color', 'red');
})
$("#test6").click(function(event) {
$('li.item-ii').find('li').css('background-color', 'blue');
})
</script>
心逸
相关分类