我在 index.php
中有这个include 'app/Core.php';
echo Core::getPageHtml();
Core.php 中的
final class Core
{
public static function getPageHtml()
{
ob_start();
include 'layout.php';
$html = ob_get_clean();
return $html;
}
}
layout.php 是正常的html代码,我可以看到de page,只是完美,但javascript代码不起作用,我甚至写了一个警告('hello world'),就像这样
<script type="text/javscript">
alert('hello world');
</script>
所以,它应该很简单,但我可以使它工作,我在这里缺少什么? 需要一些关于此代码的帮助
答案 0 :(得分:7)
"text/javscript"
- &gt; "text/javascript"
答案 1 :(得分:2)
对我而言,你的文字/ javascript拼写错误。