如何从 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;
}
}
并等待.php
<?php echo "<script> loadxml(); </script>";
whereloadxml()
以相同的方式从另一个 PHP 文件调用代码。
该loadxml()
否则工作正常,但它不会被调用我想要的方式。