[Функция] keypress(fn)
Раздел "Events"
Связать функцию с событием keydown для каждого подходящего элемента.
Параметры
keypress(fn)
1.0
fn:
функция обработчик события keypress
function (eventObject) { this; // элемент }
Описание
Событие keypress возникает, когда клавиша "зажата". Событие keypress равнозначно событиям keydown и keyup для любой клавиши. Последовательность данных событий: keydown keypress keyup.
Примеры
Пример:
Показать пробелы и символы при их вводе в поле
"jQuery"
$("input").keypress(function (e) { if (e.which == 32 || (65 <= e.which && e.which <= 65 + 25) || (97 <= e.which && e.which <= 97 + 25)) { var c = String.fromCharCode(e.which); $("p").append($("<span/>")) .children(":last") .append(document.createTextNode(c)); } else if (e.which == 8) { // backspace in IE only be on keydown $("p").children(":last").remove(); } $("div").text(e.which); });
"HTML"
<input type="text" /> <p>Add text - </p> <div></div>
"CSS"
input { margin:10px; } p { color:blue; margin:10px; font-size:18px; } p.hilite { background:yellow; } div { color:red; }
"Живой пример jQuery"
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <link href="http://test-drupal.ru/themes/slyweb/css/jqueryiframe.css" rel="stylesheet" type="text/css"/> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script> <script> $(document).ready(function(){ $("input").keypress(function (e) { if (e.which == 32 || (65 <= e.which && e.which <= 65 + 25) || (97 <= e.which && e.which <= 97 + 25)) { var c = String.fromCharCode(e.which); $("p").append($("<span/>")) .children(":last") .append(document.createTextNode(c)); } else if (e.which == 8) { // backspace in IE only be on keydown $("p").children(":last").remove(); } $("div").text(e.which); }); }); </script> </head> <body class="iframe"> <input type="text" /> <p>Add text - </p> <div></div> </body> </html> <style> input { margin:10px; } p { color:blue; margin:10px; font-size:18px; } p.hilite { background:yellow; } div { color:red; } </style>
Версия jQuery 1.4.2
Документ создан 2010-08-21