jquery 当值改变时触发方法

$("#id").bind("input propertychange change", function (event) {    
    if (event.type != "propertychange" || event.originalEvent.propertyName == "value") {
                //do function....
        }
});

你可能感兴趣的:(jquery 当值改变时触发方法)