本文概述
- jQuery keypress()事件的参数
- jQuery keypress()事件的示例
句法:
$(selector).keypress()
它触发选定元素的按键事件。
$(selector).keypress(function)
它将功能添加到按键事件。
jQuery keypress()事件的参数
参数 | 描述 |
---|---|
Function | 它是一个可选参数。触发keypress事件时, 它本身会执行。 |
<
!DOCTYPE html>
<
html>
<
head>
<
script src="http://img.readke.com/220429/2029393937-0.jpg">
<
/script>
<
script>
i = 0;
$(document).ready(function(){
$("input").keypress(function(){
$("span").text (i += 1);
});
});
<
/script>
<
/head>
<
body>
Write something: <
input type="text">
<
p>
Keypresses: <
span>
0<
/span>
<
/p>
<
/body>
<
/html>
立即测试
输出:
写一些东西:
按键:0
推荐阅读
- jQuery keyup()
- jQuery keydown()
- jQuery insertAfter()
- jQuery innerWidth()
- jQuery html()
- jQuery hover()
- jQuery历史简介
- jQuery hide()
- jQuery height()