Keypress()事件: 它指定按下键。
Keyup()事件: 它指定释放密钥。
$(selector).keydown()
$(selector).keydown(function)
参数 | 说明 |
function | 这是一个可选参数。它会在触发keydown事件时自行执行。 |
<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-1.10.2.js"></script>
<script>
$(document).ready(function(){
$("input").keydown(function(){
$("input").css("background-color", "green");
});
$("input").keyup(function(){
$("input").css("background-color", "violet");
});
});
</script>
</head>
<body>
写点东西: <input type="text">
</body>
</html>