我的HTML文件:jQuery鍵盤功能不起作用?
<html>
<head>
<script type="text/javascript" src="js/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="js/scripts.js"></script>
<link rel="stylesheet" type="text/css" href="style.css" />
<title>
Login
</title>
</head>
<body>
<div class=loginForm>
<p>Worker-ID:<input type=text id=workerID name=workerID /></p>
<p>Password:<input type=password id=workerPassword name=workerPassword /></p>
<input type=submit id=submitLogin name=submitLogin value="Log in"/>
</div>
</body>
</html>
我scripts.js中:
$('#workerID').keyup(function() {
alert('key up');
);
它不會在所有的工作。我嘗試了一切空間,一個字母,數字。該警報不顯示。錯誤在哪裏?
總是尋找錯誤信息在瀏覽器的開發者控制檯第一 – Phil