0

我有一个使用 jquery 库创建的自定义组合框控件,其中我将文本框包裹在下拉控件上,因此每次我想使用此组合框控件时,我实际上都会调用它的对象。现在我想将常用文本框的 onfocus 函数挂接到这个自定义控件上。那么我该怎么做呢?衷心感谢并欢迎相关答案!

4

1 回答 1

0

请查看演示 http://jsfiddle.net/z2y6T/

<html>
<head>
  <style>span {display:none;}</style>
  <script src="http://code.jquery.com/jquery-1.9.1.js"></script>
</head>
<body>
  <p><input type="text" /> <span>focus fire</span></p>
<p><input type="password" /> <span>focus fire</span></p>
<script>
$("input").focus(function () {
  $(this).next("span").css('display','inline').fadeOut(1000);
});
</script>

</body>
</html>

jQuery焦点

将事件处理程序绑定到“焦点”JavaScript 事件,或在元素上触发该事件

更多信息:http ://api.jquery.com/focus/

于 2013-07-23T19:31:06.917 回答