美文网首页
iOS开发JavaScript学习之helloworld

iOS开发JavaScript学习之helloworld

作者: 程序大猩猩 | 来源:发表于2019-04-03 19:55 被阅读0次

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>

<body>

    <!-- JS代码需要编写到script标签中 -->
    <script type="text/javascript">
        // 控制浏览器弹出一个警告框
        alert("hello world.");
        /*
            让计算机在页面中输出一个内容
            document.write()可以向body中输出一个内容
        */
        document.write("hello world.");
        
        /*
            console.log()的作用向控制台输出一个内容
        */
        console.log("hello world.");
          
    </script>
     
</body>

</html>

相关文章

网友评论

      本文标题:iOS开发JavaScript学习之helloworld

      本文链接:https://www.haomeiwen.com/subject/qultiqtx.html