我正在尝试从 Javascript 中的 php 类返回一个值:
<html>
<?php
function tester()
{
return "testing";
}
?>
<script type="text/javascript">
var val= "<?php tester(); ?>";
document.write(val);
document.write('Finished!');
</script>
</html>
什么都没有返回,而我只是得到一个空白屏幕(除了“完成”消息)=(