JavaScriptを使用して別のHTMLページを読み込めないのはなぜですか? HTML、CSS、PHPなどを読み込みますが、JavaScriptは読み込みません。 AJAXはそのように動作するはずですか?もしそうなら、JSをAJAXで含む別のHTMLページをどうやってロードできますか?AJAXは別のページでJavaScriptを読み込むことができません
私が何を意味するか、簡単な例応答の
a.php
<!DOCTYPE html>
<html>
<body>
<div id="demo">
<h1>The XMLHttpRequest Object</h1>
<button type="button" onclick="loadDoc()">Change Content</button>
</div>
<script>
function loadDoc() {
var xhttp = new XMLHttpRequest();
xhttp.onreadystatechange = function() {
if (this.readyState == 4 && this.status == 200) {
document.getElementById("demo").innerHTML =
this.responseText;
}
};
xhttp.open("GET", "b.php", true);
xhttp.send();
}
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<body>
<h1>b</h1>
<script>
document.write("Hello World!");
</script>
</body>
</html>
b.phpスクリーンショット:
可能な重複あなたは)(evalにのようなスクリプトタグ内のコードを持っていますスクリプトをinnerHTMLに挿入できますか?](https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml) – yuriy636