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