jQuery 在谷歌浏览器下 input标签 不支持 onchange
发布网友
发布时间:2022-05-24 08:59
我来回答
共3个回答
热心网友
时间:2023-10-09 15:28
不知道你是不是把方法已经注册了,
jQuery('document').ready(function(){
jQuery(".proctNum").bind("change",function(){
alert("dfdf");
});
});
另外:
建议将:$(".proctNum").
写成是:jQuery(".proctNum").
热心网友
时间:2023-10-09 15:29
请改用textarea
热心网友
时间:2023-10-09 15:29
$(function(){
$(".proctNum").change(function(){
alert("ffff");
});
});