0

我有一个<input type="text">使用该方法为许多其他脚本 jquery 更新值的方法.val("value here")。我需要在 的值input更新后运行一个新脚本。如何关联一个适合我的事件?

这是我的代码:
$('#PedidoTotalDescontoPadrao').change(function() { console.log('test'); });

但它不起作用

4

2 回答 2

0

change()方法不适用于<input type="text">html 标签。你可能不想用keyup().

$('#PedidoTotalDescontoPadrao').keyup(function() {
 console.log('test');
 // and this is how you'd trigger the other events you want 
 $('.something').trigger('click');     
});
于 2012-08-14T16:09:53.797 回答
0

我认为您使用错误的事件处理程序来满足您的需要。

试试这个。

http://api.jquery.com/keyup/

于 2012-08-14T15:57:46.967 回答