[Функция] focus(fn)
Раздел "Events"
Связать функцию с событием focus для каждого подходящего элемента.
fn:функция обработчик события focu
function (eventObject) {
this; // элемент
}
Событие focus запускается, когда элемент получает фокус либо с использованием указателя мыши, либо через кнопку tab.
Пример:
"jQuery"
$("input").focus(function () {
$(this).next("span").css('display','inline').fadeOut(1000);
});
"HTML"
<p><input type="text" /> <span>focus fire</span></p>
<p><input type="password" /> <span>focus fire</span></p>
"CSS"
span {display:none;}
"Живой пример 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").focus(function () {
$(this).next("span").css('display','inline').fadeOut(1000);
});
});
</script>
</head>
<body class="iframe">
<p><input type="text" /> <span>focus fire</span></p>
<p><input type="password" /> <span>focus fire</span></p>
</body>
</html>
<style>
span {display:none;}
</style>
Пример:
Запретить пользователю вводить текст в поле input:
"jQuery"
$("input[@type=text]").focus(function(){
$(this).blur();
});
Версия jQuery 1.4.2
Документ создан 2010-08-21