我有以下代码:
activeJquery('button').on('click', preventDoubleClick);
activeJquery("input[type='submit']").on('click', preventDoubleClick);
activeJquery("input[type='button']").on('click', preventDoubleClick);
我正在搜索可以将我的所有按钮全部选中的内容。有可能吗?
类似的东西:
activeJquery("button|input[type='submit|button']").on('click', preventDoubleClick);