如何检测隐藏输入值的变化?我已经尝试过这些方法但没有成功:
$('#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);
});