我有以下三个输入字段:
<input type="text" name="address" id="address"/>
<input type="text" name="city" id="city"/>
<input type="text" name="country" id="country"/>
如何一次将 onChange 事件添加到所有这些字段,如下所示:
$("select the elements with id address,city,country").bind("change", function() {
//do something
});