我有一个这样的html页面:
<div>
some html tags here
</div>
<script> some javascript for rendering calender</script>
<link> some css </link>
我在这个 html 页面中有一个日历,它由一些 javascript 呈现。我想在一个 php 页面中显示这个页面内容。我试过这个:
include(location of html page);
我已将它包含在我的 php 页面中间,但它在我不想要的 php 页面顶部呈现日历。我也试过这个:
echo file_get_contents(location of my html page);
它在我添加此行但日历未呈现的正确位置显示 html 页面内容。
我需要在正确的位置呈现日历和 html 页面内容。任何建议都会对我有所帮助。