我有<input type="text">
使用.val("value here")
方法为许多其他脚本jquerys更新了值。当input
的值已更新时,我需要运行一个新脚本。如何关联一个为我制作的事件?
这是我的代码:
$('#PedidoTotalDescontoPadrao').change(function()
{
console.log('test');
});
但它不起作用
答案 0 :(得分:0)
答案 1 :(得分: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');
});