15天学会jQuery编程与实战(视频教学版) (Web前端技术丛书)
上QQ阅读APP看书,第一时间看更新

1.5 jQuery代码的注释

jQuery中的代码注释与JavaScript语言中的注释风格保持一致,有两种最常用的注释,分别为:

● 单行注释 //...

● 多行注释 /*...*/

下面为之前的程序添加注释。

【示例1-2】jquery01.html

        01    <! DOCTYPE html>
        02    <html lang="zh-CN">
        03    <head>
        04        <meta charset="UTF-8">
        05        <title>HELLO</title>
        06        <script src="../jquery-3.1.1.js" type="text/javascript" ></script>
         //引入jQuery库
        07        <script type="text/javascript">
        08       /*作者:tiny
        09       时间:0206
        10       内容:click事件 */
        11        $(document).ready(function(e) {
        12             $("#hi").click(function(){
        13              alert("hello");
        14              });
        15        });
        16    </script>
        17    <body>
        18     <div id="hi">Hello jQuery,我来了</div>
        19    </body>
        20    </html>

第06行代码使用单行注释//,第08~10行使用多行注释/*...*/。