jquery/1.9.0/jquery.js 注意啊 Jquery1.9.0没有live函数的被on替换了
.live() has been replaced with the event delegation syntax of .on():
我的代码
$("body").on("click mouseout","input[type='button']", function () {
$(this).attr("disabled", "true");
jquery/1.9.0/jquery.js 注意啊 Jquery1.9.0没有live函数的被on替换了
.live() has been replaced with the event delegation syntax of .on():
我的代码
$("body").on("click mouseout","input[type='button']", function () {
$(this).attr("disabled", "true");
2014-08-23
举报