以下のコードを使用して、ナビメニューのリンクをクリックすると、特定の div (InnerHTML) に html ページが表示されますが、メニューは css スタイルであり、リンクをクリックしてページを div に取得した後、私のnav li cssが壊れていて、クリックしてdiv内にあるページのcssスタイルを取得しているようです...どうすれば要求しているページでcssを取得しないようにできますか?ありがとうございました。
<script>
function processAjax(url) {
if (window.XMLHttpRequest) { // Non-IE browsers
req = new XMLHttpRequest();
req.onreadystatechange = targetDiv;
try {
req.open("GET", url, true);
} catch (e) {
alert(e);
}
req.send(null);
} else if (window.ActiveXObject) { // IE
req = new ActiveXObject("Microsoft.XMLHTTP");
if (req) {
req.onreadystatechange = targetDiv;
req.open("GET", url, true);
req.send();
}
}
return false;
}
function targetDiv() {
if (req.readyState == 4) { // Complete
if (req.status == 200) { // OK response
document.getElementById("containerDiv").innerHTML = req.responseText;
} else {
alert("Problem: " + req.statusText);
}
}
}
</script>