当我使用jquery的.load()函数加载html文件时,它不会加载整个html,如:
而不是:
<html>
<head>
<link .. />
<script .. />
</head>
<body>
<div>..</div>
<div>..</div>
</body>
</html>
加载此内容:
<link .. />
<div>..</div>
<div>..</div>
任何人都可以告诉我为什么以及如果我想加载整个html我该怎么办?
答案 0 :(得分:-1)
你是
吗?链接jquery后,您的代码应该是
$(document).ready(function() {
$('#mydivforcontent').load("theforeignpage"); // you may need to replace load with html
});