$("li").click(function() { var $li = $(this), isWithTwo = $li.is(function() { return $('strong', this).length === 2; // 请教 这段代码的作用是什么尤其是$("strong",this) }); if ( isWithTwo ) { $li.css("background-color", "green"); } else { $li.css("background-color", "red"); } });
- 3 回答
- 0 关注
- 1504 浏览
添加回答
举报
0/150
提交
取消