Heim  >  Artikel  >  Web-Frontend  >  我的代码有什么错误_html/css_WEB-ITnose

我的代码有什么错误_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 12:02:46894Durchsuche

本人刚学 Html 和 JS 写了下面2个文件 感觉应该显示 Hello world 但实际是什么也不显示,请问我错在哪?

Test.html 内容
nbsp;html>


Example

    <script></script>



    <script> <br /> myfunc() <br /> </script>



Test.js 内容
function Myfunc()
{
document.writeln("Hello world");
}


回复讨论(解决方案)

nbsp;html>


Example




    

    <script></script>
<script> <br /> myfunc(); <br /> </script>


Test.js 内容
function Myfunc()
{
alert("Hello World!');
document.writeln("Hello world");
}

把两个文件放在同一个文件夹试试.

试了,没什么效果

找到问题了
<script></script> 写成<script></script> 就好

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn