问答详情
源自:1-1 为什么学习JavaScript

代码运行错误

如果

<?php

document.write"(hello)";

?>

提问者:慕粉0822097427 2017-03-02 08:55

个回答

  • qq_Absurdyears_0
    2017-03-03 16:48:12

    <?php

    document.write"(hello)";

    ?>

    上面是你的代码,加粗画线的地方注意:""应该在括号内将文字括起来("hello");

  • fIve_d0Ck
    2017-03-02 11:49:56

    document.write("hello");

  • 有梦为马M随处可栖
    2017-03-02 09:27:18

    document.write("hello");

  • 慕标6621064
    2017-03-02 09:11:46

    <?php

    document.write("hello");

    ?>

    应该这么写吧