有人愿意在这个脚本上帮助我吗?
我只需要有人拿这个 AJAX 片段并基本上用 jQuery 对其进行重新编程,这样我就可以研究它并了解有关如何使用 jQuery 的更多信息。这是我正在使用的 AJAX 的当前工作位,我想如果我能在 jQuery 中看到它,它将开始我的学习过程......
所以,如果有人这么好心,这就是脚本:
function CreateXmlHttpObject() { //function to return the xml http object
var xmlhttp = false;
try {
xmlhttp = new XMLHttpRequest(); //creates a new ajax object
} catch(e) {
try {
xmlhttp = new ActiveXObject("Microsoft.XMLHTTP"); //this is for IE browser
} catch(e) {
try {
req = new ActiveXObject("Msxml2.XMLHTTP"); //this is for IE browser
} catch(e1) {
xmlhttp = false; //error creating object
}
}
}
return xmlhttp;
}
function getMetaID(strURL) {
var req = CreateXmlHttpObject(); // function to get xmlhttp object
if(req) {
req.onreadystatechange = function () {
if(req.readyState == 4) { //data is retrieved from server
if(req.status == 200) { // which reprents ok status
document.getElementById('meta_id').innerHTML = req.responseText; //put the results of the requests in or element
} else {
alert("There was a problem while using XMLHTTP:\n");
}
}
}
req.open("GET", strURL, true); //open url using get method
req.send(null); //send the results
}
}
这是在调用函数(PHP)的页面上:
echo '<select name="meta_id" onChange="getMetaID('."'".'http://www.mysite.com/backoffice/meta_tags/ajaxpageid.php?meta_id='."'".'+this.value)">';
这是一个<div>
之后。
希望这是足够的信息来使它有意义。我当然感谢任何帮助...