我的页面上有以下两个元素:
<input type="text" id="textfield"/>
<input type="button" id="button" value="CLICK"/>
在我的 Javascript 代码中,我有以下内容:
$(document).ready(function() {
$("#button,#textfield").on("click change",function() {
// This won't work because I don't need click function
// to be worked on the text field
});
});
我需要的是在按钮上工作的单击功能,并且只需要在文本字段上工作的更改功能。我该怎么做呢?