是否可以像这样在一次通话中检查 input[type="text"]
焦点textarea
?
$("input[type='text']").focus(function() {});
或者我是否必须创建两个 JQuery 调用来检查两种类型的焦点?
$("input[type='text']").focus(function() {});
$("textarea']").focus(function() {});
谢谢
是的,您可以使用逗号,它表示OR
. 试试这个:
$("input[type='text'], textarea").focus(function() {});
你的意思是:
$("input[type='text'], textarea").focus(function() {});
在 jQuery 中,您可以像这样组合选择器并附加一个函数
$("input[type=text],textarea").focus(function() {});