更清晰的jquery文本框更改事件

时间:2013-06-20 08:56:43

标签: javascript jquery

我很抱歉问这个问题,因为可能已经存在的答案只是对我不够清楚。在html texbox控件上应用jquery change事件的最佳方法是什么?

3 个答案:

答案 0 :(得分:0)

你是说textarea吗?像这样:

$('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);
});