我写了一些代码,本质上做了以下事情:
<div id="thisDiv">
</div>
<?php
echo "<script>document.getElementById('thisDiv').innerHTML = '".addslashes(str_replace(array("\n", "\r"), "", file_get_contents('/path/to/file/example.php'')))."';</script>";
?>
但是,我注意到这不起作用: <?php ?>
example.php 内的标记中没有任何内容进入 div。为什么会这样,这是他们的解决方法吗?