如何在index.html中包含menu.html菜单
在menu.html中我只有
<li><a href="home.html">Home</a></li>
<li><a href="news.html">News</a></li>
index.html中的
<!doctype html>
<html>
<head>
<title>load demo</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
</head>
<body>
<b>Projects:</b>
<ul id="new-projects"></ul>
<script>
$( "#new-projects" ).load("menu.html");
</script>
</body>
</html>
这里有什么问题?
答案 0 :(得分:0)
您需要跟踪浏览器日志:
$( "#new-projects" ).load("menu.html", function( r, s, x ) {
console.log(r);
console.log(s);
console.log(x);
});