jquery ajax在ie浏览器下无法运行,火狐浏览器却正常,求解

2024-12-30 23:22:08
推荐回答(2个)
回答1:

  您好!很高兴为您答疑!

  确认下jQuery是不是正确,然后将
jQuery.get(ckurl,function(html){alert(html);$("#gc_type").append(html)}
换成
$.get(ckurl,function(html){alert(html);$("#gc_type").append(html)}
  您可以在火狐社区了解更多内容。希望我的回答对您有所帮助,如有疑问,欢迎继续在本平台咨询。

回答2:

包含了jquery.js没有?
jQuery.get(ckurl,function(html){alert(html);$("#gc_type").append(html)}
换成
$.get(ckurl,function(html){alert(html);$("#gc_type").append(html)}