如何从PHP调用JavaScript函数?
<?php
jsfunction();
// or
echo(jsfunction());
// or
// Anything else?
以下代码来自xyz.html(单击按钮),它wait()
在外部xyz.js中调用a 。这wait()
将调用wait.php。
function wait()
{
xmlhttp=GetXmlHttpObject();
var url="wait.php"; \
xmlhttp.onreadystatechange=statechanged;
xmlhttp.open("GET", url, true);
xmlhttp.send(null);
}
function statechanged()
{
if(xmlhttp.readyState==4) {
document.getElementById("txt").innerHTML=xmlhttp.responseText;
}
}
和wait.php
<?php echo "<script> loadxml(); </script>";
loadxml()
从那里以同样的方式从另一个PHP文件调用代码。
该loadxml()
否则工作正常,但它不会被调用我想要的方式。