我知道有一种 JQuery 方法可以做到这一点,但这不是我现在需要的。
我有以下将页面内容拉入 div 的 javascript,但是我不想要整个页面,只需要该页面中 DIV 的内容:
function ahah(url, target) {
document.getElementById(target).innerHTML ='<img src="ajax-loader.gif"/>';
if (window.XMLHttpRequest) {
req = new XMLHttpRequest();
} else if (window.ActiveXObject) {
req = new ActiveXObject("Microsoft.XMLHTTP");
}
if (req != undefined) {
req.onreadystatechange = function() {ahahDone(url, target);};
req.open("GET", url, true);
req.send("");
}
}
function ahahDone(url, target) {
if (req.readyState == 4) { // only if req is "loaded"
if (req.status == 200) { // only if "OK"
document.getElementById(target).innerHTML = req.responseText;
} else {
document.getElementById(target).innerHTML=" Error:\n"+ req.status + "\n" +req.statusText;
}
}
}
function load(name, div) {
ahah(name,div);
return false;
}
然后我这样称呼它:
<a href="page.php" onclick="load('page.php','ajaxcontent');return false;" class="slide_more">LOAD</a>
应该在哪里指定我想从 page.php 加载的选择器?