在.load(file)jQuery上加载文件的正确位置在哪里

时间:2018-06-21 07:46:26

标签: javascript jquery html

我正在尝试将b.html加载到与主html相同的文件夹中,但不会加载。我已经从W3School复制了整个示例,当我通过单击文件夹中的HTML文件手动对其进行测试时,它没有任何作用。

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("#div1").load("b.html");
    });
});
</script>
</head>
<body>
<div id="div1"><h2>Let jQuery AJAX Change This Text</h2></div>
<button>Get External Content</button>
</body>
</html>

0 个答案:

没有答案