jQuery点击事件语法

iaqfqrcu  于 2022-11-22  发布在  jQuery
关注(0)|答案(2)|浏览(134)

下面的代码在使用XAMPP的localhost上运行良好,但在其他服务器上不起作用。

<!DOCTYPE html>
<html>
    <head>
        <script src="jquery-latest.js"></script>
    </head>
    <body>
        word: <input type="text" id="sub" />
        user: <input type="text" id="user" />

        <button type="button" id="btn">Click Me!</button>

        <script>
            $("#btn").click(function () {
                var word=$("#sub").val();
                var usr=$("#user").val();
                alert("hi");
            });
        </script>
    </body>
</html>

我收到了2个来自Chrome inspect元素的错误:

  • Uncaught SyntaxError: Unexpected end of input jquery-latest.js:5669
  • Uncaught ReferenceError: $ is not defined
5jvtdoz2

5jvtdoz21#

检查 jquery-latest.js 是否 与 html 文件 在 同一 个 目录 下 。 否则 代码 是 正确 的 , 也 可以 工作 。 在 脚本 中 添加 类型 。 尝试 以下 操作

<script type="text/javascript" src="jquery-latest.js"></script>

中 的 每 一 个

vngu2lb8

vngu2lb82#

您需要在$(document).ready()事件中连接click处理程序。

<!DOCTYPE html>
<html>
    <head>
        <script src="jquery-latest.js"></script>
        <script>
        $(document).ready(function() {
            $("#btn").click(function () {
                var word=$("#sub").val();
                var usr=$("#user").val();
                alert("hi");
            });
        });
        </script>
    </head>
    <body>
        word: <input type="text" id="sub" />
        user: <input type="text" id="user" />

        <button type="button" id="btn">Click Me!</button>
    </body>
</html>

相关问题