下面的代码在使用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
2条答案
按热度按时间5jvtdoz21#
检查 jquery-latest.js 是否 与 html 文件 在 同一 个 目录 下 。 否则 代码 是 正确 的 , 也 可以 工作 。 在 脚本 中 添加 类型 。 尝试 以下 操作
中 的 每 一 个
vngu2lb82#
您需要在
$(document).ready()
事件中连接click处理程序。