由于ajax请求,我们可以将html + css + Js的页面加载到div中吗?

时间:2018-12-11 15:39:50

标签: javascript html css ajax

这是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。

0 个答案:

没有答案