我有以下代码,我正在尝试开始工作。出于某种原因,它在 JSFiddle 上运行良好,但是当我从服务器提供代码时在文本框中键入时没有任何反应。为什么会这样?
<!DOCTYPE html>
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8/jquery.js"></script>
<script type="text/javascript">
$('#userInput').keyup(function(){
alert("key up");
});
</script>
</head>
<body>
<input id="userInput" type="text">
</body>
</html>