大家好,我是 jquery 的新手。我在使用 jquery 的更改功能时遇到问题
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$("input").change(function(){
alert("The text has been changed.");
});
</script>
</head>
<body>
<input type="text">
<p>Write something in the input field, and then press enter or click outside the field.</p>
</body>
</html>
当我在文本框外按下它时,我没有收到警报框。请帮我解决这个问题:D