gpt4 book ai didi

javascript - JQuery 错误 : Uncaught TypeError: Object # has no method 'ready'

转载 作者:IT王子 更新时间:2023-10-29 03:13:33 25 4
gpt4 key购买 nike

我的站点在 javascript 控制台中出现此标题错误。谷歌好像说是因为jquery没有加载,但是在head里面肯定是看得见的。

<script type="text/javascript">
$(document).ready(function(){
$.ajax({
type: "GET",
url: "https://www.mjfreeway.com/naturalremedies/mml-connect/45.xml",
dataType: "xml",
success: function(xml) {
$(xml).find("products").each(function() {
$(this).find("product").each(function() {
$("#output").append($(this).find("title").text() + "<br />");
});
});
}
});
});
</script>

该网站与医用大麻有关,因此对某些人来说是 nsfw。抱歉,脑袋乱七八糟,它处于开发模式。 http://www.kindreviews.com/1/mmc/

谢谢, Jade 米

最佳答案

显然,您同时使用了 jQuery 和 Mootools,它们都使用 $ 作为核心函数的别名。可能产生此错误的 $ 函数是 Mootools 函数。我建议您尝试使用 jQuery 而不是 $ 来编写 jQuery 代码,这样您就可以确认我的观点是否正确。

祝你好运!

关于javascript - JQuery 错误 : Uncaught TypeError: Object #<HTMLDocument> has no method 'ready' ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5706093/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com