如何在我的HTML文档中添加jQuery(在线或离线)?

时间:2016-03-31 17:28:03

标签: javascript jquery html

这是我的HTML;由于某种原因,它无法正常工作。

            <!DOCTYPE html>
            <html lang="en">
                    <head>
                        <meta charset="utf-8" />
                        <title></title>
                        <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js">

                        </script>
                    </head>
                        <body>
                            <div id="container">
                                <h2></h2>
                            </div>
                            <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.2/jquery.min.js">
                                $(document).ready(function() {
                                    $("h2").html("Hello there!");
                                });
                            </script>
                        </body>
            </html>

我是jQuery的新手,很抱歉,如果我犯了一个明显无知的错误。

1 个答案:

答案 0 :(得分:2)

您只需要从脚本块中删除src属性:

  <script>
          $(document).ready(function() {
                 $("h2").html("Hello there!");
          });
  </script>

这是因为否则您的浏览器将使用src属性中指定的脚本而不是其包含块中的脚本