JavaScript在我的PHP代码中不起作用

时间:2010-11-08 14:47:38

标签: php

我在 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>  

所以,它应该很简单,但我可以使它工作,我在这里缺少什么? 需要一些关于此代码的帮助

2 个答案:

答案 0 :(得分:7)

"text/javscript" - &gt; "text/javascript"

答案 1 :(得分:2)

对我而言,你的文字/ javascript拼写错误。