求问一下 function里的event 跟 fliter里的(:even)如何理解?


<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> 


ken0510
浏览 1402回答 1
1回答

心逸

function里的event可看作参数,fliter里的(:even)是选择索引为偶数的元素
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript