在html

时间:2015-07-20 07:10:47

标签: javascript html function

<html>
    <head>
    </head>

    <body>
        <script>    
            var myFunction = function(){
                return "hello world";
            }
        </script>    
        myFunction();        
    </body>
</html>

我刚刚完成了关于javascript的代码学院课程,但它并没有教会我如何在html中编写javascript代码。我需要在html标签内显示hello world,使用这个函数可能吗?我的朋友告诉我,我需要jquery才能做到这一点。

4 个答案:

答案 0 :(得分:2)

您必须明确告诉网页在加载时执行您的功能。

而不是返回字符串我相信你想把它写在网页的正文中。

这是一种简单的方法:

<html>
    <head>
        <script>
            var myFunction = function(){
                document.body.innerHTML = "hello world";
            }
        </script>
    </head>
    <body onload='myFunction();'>
    </body>
</html>

答案 1 :(得分:-1)

试试这个

<html>
<head>
</head>
<body onload='myFunction()'>

<script type="text/javascript">
    var myFunction = function(){
       return "hello world";
    }
</script>

</body>
</html>

答案 2 :(得分:-1)

<html>
<head>
</head>
<body>
<Script>

function myFunction(){
    document.write("hello");
}


</script>
<Script>
    myFunction();
    </Script>

</body>
</html>

这已被问到了 How to call a javascript function within an HTML body

我只需用document.write

替换

标签

答案 3 :(得分:-2)

这是你想要的。

您的html文件应该

&#13;
&#13;
public <T> void DO(T[] balls) {
  ...
}
&#13;
&#13;
&#13;