我很抱歉问这个问题,因为可能已经存在的答案只是对我不够清楚。在html texbox控件上应用jquery change事件的最佳方法是什么?
答案 0 :(得分:0)
$('textarea').on('keydown', function() {
//Do stuff
console.log('Do something smart here!');
});
答案 1 :(得分:0)
您可以尝试以下示例代码吗?
< input type =“text”class =“common”/>
< input type =“text”class =“common”/>
< input type =“text”class =“common”/>
< script src =“http://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js”>< / script>
< script type =“text / javascript”>
$(document).ready(function () {
$("input.common[type='text']").change(function () {
var value = this.value;
alert(value);
});
});
< /脚本>
答案 2 :(得分:0)
在现代浏览器中,使用oninput event:
$('textarea').on('input',function(event){
alert(this.value);
});