9
是否存在用于标识符(id)的通配符选择器?
如果我有数量未知的标识符共享一个特定的命名方案,是否可以使用jQuery一次捕获所有标识符? // These are the IDs I'd like to select #instance1 #instance2 #instance3 #instance4 // What do I need to add or how do I need to modify this jQuery selector in order to select all the IDs above? ("#instanceWILDCARD").click(function(){}