$('.div').click( function (){ $(this).val('this is clicked'); //! get the items that are not clicked } )
$(‘.div’)返回一个项目列表,然后单击其中一个.如何获取未单击的项目列表.
注意:我不是在寻找为被点击的项目(或未单击的项目)添加属性并过滤它的解决方案.
$('.div').click( function (){ $(this).val('this is clicked'); var others = $(".div").not($(this)); } )