jquery file not found error, how to solve

Failed to load resource: net::ERR_FILE_NOT_FOUND
Gettext方法测试01.html:11 Uncaught ReferenceError: $ is not defined 

  

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>demo 02 </title>

    <script type="text/javascript" src="/jquery/jquery.js"></script>
    <script type="text/javascript">
    $(document).ready(function(){
      $(".btn1").click(function(){
        $("p").text("Hello world!");
      });
    });
    </script>
</head>
<body>
    <p>This is a paragraph.</p>
<p>This is another paragraph.</p>
<button class="btn1">改变所有 p 元素的文本内容</button>
</body>
</html>

Guess you like

Origin blog.csdn.net/chenggong9527/article/details/123657065