2013-07-23 87 views
0

我有一個使用jquery庫創建的自定義創建的組合框控件,其中我有文本框包裹在下拉控件,以便每當我使用想要使用此組合框控件時,我實際上調用它的對象。現在我想將常用文本框的onfocus函數掛接到此自定義控件。那麼我怎麼能做到這一點?相關答案讚賞&歡迎來自我的心底!如何將onfocus事件添加到jquery中的自定義創建的控件?

+0

有關的代碼是讚賞有問題 –

回答

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/

相關問題