你如何知道当前的元素是不是第一个孩子?
它应该使用$(this),例如:
$("li").click(function(e) { if (/* $(this) is not the first-child */) { /* do something */ } });
解决方法
你可以这样做只是为了测试一个元素,如果它是第一个孩子:$(this).is(‘:first-child’)。其他选择器,如:最后一个孩子也会工作。