Index.html
を使用して動的なコンテンツを作成しましたJQuery
私が持っている内部インデックス
<div id="main">
</div>
そして、コンテンツをロードするスクリプトがあります:-
function LoadPage(url) {
var req = false;
if (window.XMLHttpRequest) {
try {
req = new XMLHttpRequest();
} catch (e) {
req = false;
}
} else if (window.ActiveXObject) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP");
} catch (e) {
try {
req = new ActiveXObject("Microsoft.XMLHTTP");
} catch (e) {
req = false;
}
}
}
var element = document.getElementById("main");
if (!element) {
alert("Bad id " +
"passed to clientSideInclude." +
"You need a div or span element " +
"with this id in your page.");
return;
}
if (req) {
req.open('GET', url, false);
req.send(null);
element.innerHTML = req.responseText;
} else {
element.innerHTML =
"Sorry, your browser does not support " +
"XMLHTTPRequest objects. This page requires " +
"Internet Explorer 5 or better for Windows, " +
"or Firefox for any system, or Safari. Other " +
"compatible browsers may also exist.";
}
}
だから私は次のようにそれを使うことができます<a href="#" onclick="LoadPage('home.html')" title="Home">
今問題は、私がロードHome.html
し、home.htmlに他のものがある場合、 withhref
が表示されないため機能しないため、インデックスの を取得してリロードする方法、またはこの問題をどのように解決できますか?div
id="main"
div