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,你可以使用.bind()函数来触发输入框的变化。
.bind()
$("element").bind('change', function({}));