Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有三个文本字段需要有一个 jquery 点击事件
$('#landline' OR '#mobile_number' OR '#alternate_number').click(function() { $(this).val(""); });
我希望每当用户单击带有 id 固定电话或 mobile_number 或alternate_number 的字段时,该值将被设置为空。但是这段代码不起作用。
用于,连接多个选择器:
,
$('#landline, #mobile_number, #alternate_number').click(function() { $(this).val(""); });