美文网首页
Java-script基本语法

Java-script基本语法

作者: 杰伊_约翰 | 来源:发表于2018-10-29 16:57 被阅读8次

基本语法:script标签卸载head标签内;alert-浏览器弹窗,document-网页中要写的内容,console-控制台信息。

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>js基本语法</title>
    <script type="text/javascript">
        alert('hello');
        document('What are you doing?');
        console.log("I'm doing homework.");
    </script>
</head>
<body>
    
</body>
</html>
image.png 1.png 2.png

相关文章

网友评论

      本文标题:Java-script基本语法

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