这是我的主页
<html>
<head>
<title></title>
<style>
#exp{
height: 100%;
width:100%;
position: absolute;
left:0;
top:0;
background:#00FF00;
}
</style>
<script src="scripts/jquery.js"></script>
<script>
$(function(){
$("#exp").load('aboutus.html');
})
</script>
</head>
<body>
<div id="exp">
</div>
</body>
</html>
我想从 aboutus.html 页面加载此内容该页面中的内容是
<div style="height:100%;width:100%;position:absolute;left:0px;top:0px">Hai</div>
我尝试了加载、获取、.html 等,但它们都没有工作。我不想包含 php
我试过的方法
$("#exp").load('aboutus.html');
$("#exp").get('aboutus.html');
$("#exp").html(url(aboutus.html'));