如何檢測隱藏輸入值的更改?我已經嘗試過這些方法都沒有成功:隱藏輸入更改事件
$('#id_inpout').live('change',function() {
var id_el = $(this).attr('id');
alert(id_el);
});
和
$('#id_inpout').change(function() {
var id_el = $(this).attr('id');
alert(id_el);
});
和
$('#id_inpout').bind('change',function() {
var id_el = $(this).attr('id');
alert(id_el);
});
複製? http://stackoverflow.com/questions/6533087/jquery-detect-value-change-on-hidden-input-field – max4ever
但其他問題的答案都不能接受......即使upvoted的人涉及到調用明確觸發... –
這個答案呢? http://stackoverflow.com/questions/1003053/does-html-hidden-control-have-any-events-like-onchange-or-something – palmplam