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.
我有一个带有可变数量的“选择”下拉列表和文本框的表单。我只想将.change()事件绑定到“选择”元素。我已经尝试过$(":input").change(),但将事件绑定.change()到所有输入。是否有类似$(":text")或方法来指定$(":input")仅针对“选择”元素?
.change()
$(":input").change()
$(":text")
$(":input")
$("select").change(function() { ... })
传递给$()函数的选择器可以是任何 CSS 选择器,仅包括一个 html 标记名,例如“select”。
$()
进一步阅读: