标签: javascript jquery css
是否存在用于组合以下内容的简短语法:
$(`input[type="text"], input[type="email"]`).click(...);
我尝试过:
input[type="text"][type="email"] input[type="text|email"] input[type="text"|"email"]
但是那些不起作用。