我正在尝试将外部 HTML 文件加载到 div 中。我尝试在 jQuery 中使用load()函数,但它不起作用。这是我的代码:
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script>
<script>
$(document).ready(function () {
$('#content').load("1.html");
});
</script>
</head>
<body>
<div id="content"></div>
</body>
</html>
这是“1.html”:
<html>
<head>
</head>
<body>
<p>This is demo text.<p>
</body>
</html>
呼唤远方
相关分类