我不确定多项选择的语法。我的意思是采用您的标准点击元素功能:
$("#target").click(function () {});
意思是if #target is clicked then do function
并使它意味着if #target or #target2 or #target3 is clicked then do function
或者if #target1 and #target2 are hovered over, then do function
我知道我可以为每个人做一个点击功能,但这似乎浪费空间,那么我该如何更简洁地编写代码呢?
谢谢。