我正在尝试从 php 调用 javascript 函数。根据我一直在查看的所有示例,以下内容应该可以工作,但事实并非如此。为什么不?
<?php
echo "function test";
echo '<script type="text/javascript"> run(); </script>';
?>
<html>
<script type="text/javascript">
function run(){
alert("hello world");
}
</script>
</html>