2010-05-30 48 views

回答

2

jQuery中,我會做這樣的事情:

$('input').focus(function(){ 
    $(this).sibling('div.form_tooltip').show(); 
}); 
$('input').blur(function(){ 
    $(this).sibling('div.form_tooltip').hide(); 
}); 

對應的HTML:

+0

我已經tryed這一點,但不起作用:HTTP ://feste.000space.com/ – xRobot 2010-05-30 08:32:24

+0

ops ... now work :) – xRobot 2010-05-30 09:14:23

+0

Write $(this),not $('this') – mexique1 2010-05-31 11:44:05

相關問題