我在我的HTML中包含以下javascript代码,后者又引用了一个用于执行后端作业的php文件:
<script type='text/javascript'>
<!--//<![CDATA[
var partnerId = "100b70a8a2248717";
var siteId = "12418";
var m3_u = (location.protocol=='https:'?'https://javascriptGetAd.php':'http://javascriptGetAd.php');
var m3_r = Math.floor(Math.random()*99999999999);
document.write ("<scr"+"ipt type='text/javascript' src='"+m3_u);
document.write ("?partner_id=" + partnerId);
document.write ('&site_id=' + siteId);
document.write ('&version=1.5');
document.write ('&language=javascript');
document.write ('&format=wap');
document.write ('&cb=' + m3_r);
document.write ("'><\/scr"+"ipt>");
//]]>-->
如果不使用如上所示的document.write(),我是否可以通过任何其他方式从javascript函数内部调用javascriptGetAd.php?
答案 0 :(得分:1)
您可以将AJAX用于此目的
var xmlhttp;
if (window.XMLHttpRequest)
xmlhttp=new XMLHttpRequest();
else
xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
xmlhttp.onreadystatechange=function()
{
if (xmlhttp.readyState==4 && xmlhttp.status==200)
{
// Handle xmlhttp.responseText;
}
}
xmlhttp.open("GET","javascriptGetAd.php",true);
xmlhttp.send();