这是html + ajax代码,它要求使用html + css + js的另一个页面,但结果是只能将html加载到div中,我需要将整个页面都加载到div中,
tempStr = """test"""
请求的AjaxTest1.html页面代码为
<!DOCTYPE html>
<html>
<head>
<script>
function showHint() {
var xmlhttp = new XMLHttpRequest();
xmlhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("txtHint").innerHTML = this.responseText;
}
}
xmlhttp.open("GET", "AjaxTest1.html", true);
xmlhttp.send();
}
</script>
</head>
<body>
<button style="width:50px;height:50px;" onclick="showHint()">Click</button>
<div id="txtHint">
</div>
</body>
</html>
Output when i click button to laod AjaxTest1.html
而我需要js和css来同时在responseText中附带html。