欢迎各位兄弟 发布技术文章
这里的技术是共享的
1 2 3 | $("#tb_shortName").bind("propertychange", function () { alert("i m change"); });$("body").on("propertychange", "#tb_shortName", function () { alert("i m change"); });$("body").on("blur", "#tb_usePeople", function () { $("#tb_shortName").val("111"); }); |
1 2 | $("#tb_shortName").attr("onpropertychange", "ValChange()");var ValChange = function () { alert("i m change"); } |
$("body").on("propertychange input", "#tb_shortName", function () { alert("i m change"); });
来自 http://bbs.csdn.net/topics/390704952