gpt4 book ai didi

javascript - jQuery (3.4.1/3.3.1) load.() 不起作用,到目前为止没有找到解决方案

转载 作者:行者123 更新时间:2023-12-02 21:45:24 24 4
gpt4 key购买 nike

我正在搞乱 jQuery .load()

这是我的代码示例:

<html>
<head>
<meta charset="utf-8">
<title>load demo</title>
<script src="https://code.jquery.com/jquery-3.4.1.js"></script>
</head>

<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").load('test.txt');
});
});
</script>

<body>
<div id="div1">Old text</div>
<button>Get new text</button>

</body>
</html>

它不会在 Safari (OSX)Firefox (Rasperian) 上加载。我知道这个问题被问了很多次,但没有一个答案真正有帮助。

最佳答案

您的语法是正确的,但也许您的文件没有从正确的位置获取

如果有错误,您还应该处理

另请检查此 jquery-load-method

 $(document).ready(function(){
$("button").click(function(){
$("#div1").load('/test.txt', function( response, status, xhr ) {
if ( status == "error" ) {
alert( "Sorry but there was an error: " + xhr.status + " " + xhr.statusText );
}
});
});
});

关于javascript - jQuery (3.4.1/3.3.1) load.() 不起作用,到目前为止没有找到解决方案,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60262967/

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