我正在尝试使用 AJAX 获取页面,但是当我获取该页面并且它包含 Javascript 代码时 - 它不会执行它。
为什么?
我的 ajax 页面中的简单代码:
<script type="text/javascript">
alert("Hello");
</script>
...并且它不执行它。我正在尝试使用 Google Maps API 并使用 AJAX 添加标记,所以每当我添加一个标记时,我都会执行一个获取新标记的 AJAX 页面,将其存储在数据库中,并且应该将标记“动态”添加到地图中。
但是由于我不能以这种方式执行单个 javascript 函数,我该怎么办?
我事先在页面上定义的函数是受保护的还是私有的?
** 使用 AJAX 功能更新 **
function ajaxExecute(id, link, query)
{
if (query != null)
{
query = query.replace("amp;", "");
}
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)
{
if (id != null)
{
document.getElementById(id).innerHTML=xmlhttp.responseText;
}
}
}
if (query == null)
{
xmlhttp.open("GET",link,true);
}
else
{
if (query.substr(0, 1) != "?")
{
xmlhttp.open("GET",link+"?"+query,true);
}
else
{
xmlhttp.open("GET",link+query,true);
}
}
xmlhttp.send();
}
** Deukalion 的解决方案 **
var content = xmlhttp.responseText;
if (id != null)
{
document.getElementById(id).innerHTML=content;
var script = content.match("<script[^>]*>[^<]*</script>");
if (script != null)
{
script = script.toString().replace('<script type="text/javascript">', '');
script = script.replace('</script>', '');
eval(script);
}
}
在某些事件上,我必须在脚本中添加事件侦听器,而不仅仅是制作“select onchange='executeFunctionNotIncludedInAjaxFile();'”,我必须为此添加EventListener("change", functionName, false)。在正在评估的脚本中。