如何在网页中执行AJAX响应返回的javascript(response = html + javascript)

时间:2015-04-04 11:23:03

标签: javascript html ajax

我的buyresult.php页面工作正常,当我给url作为buyresult.php?q =迈索尔 但作为回应我得到ajax调用(html和javascript都是响应).. javascript无法正常工作...如何解决它...我是网络编程的新手。请帮忙.. 我用谷歌搜索并得到了使用

的结果
new Ajax.Updater(divID,URL,{asynchronous:true,evalScripts: true});

但我不知道在哪里放这个功能 我的index.php文件如下:

<script>
function showUser(str) {
if (str == "") {
    document.getElementById("txtHint").innerHTML = "";
    return;
} else { 
    if (window.XMLHttpRequest) {
        // code for IE7+, Firefox, Chrome, Opera, Safari
        xmlhttp = new XMLHttpRequest();
    } else {
        // code for IE6, IE5
        xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
    }
    xmlhttp.onreadystatechange = function() {
        if (xmlhttp.readyState == 4 && xmlhttp.status == 200) {
            document.getElementById("txtHint").innerHTML = xmlhttp.responseText;
        }
    }
    xmlhttp.open("GET","buyresult.php?q="+str,true);
    xmlhttp.send();

}
}
</script></head>
<body>

<label for="city">Enter City :</label><input class="w-input" id="city" type="text" placeholder="Enter the city name (required)" name="city" data-name="city" required="required" onchange="showUser(this.value)">
<div id="txtHint"><b>Results will be displayed Here...</b></div>
</body>

0 个答案:

没有答案