我有一個圖像,如果點擊,其他div將通過使用jquery的不透明度爲0。我還想,如果圖像被點擊,我會重置文本框。通過單擊圖像重置textfield
這裏是我的代碼。
<div id=loginExit>
<img class='loginEXIT' src='Site_Images/close.png'>
</div>
<div id=loginForm>
<div class=formC>
<form name='loginForm' action='loginC.php' method='post'>
<font face='Verdana' color=#d6d5d0 size=2>
Email Address:
<input type=text name='eadd' id=eaddtf style='width:150px;height:20px;border:1px solid #37749e;margin-bottom:5px;'>
<br>
Password:
<input type=password name='pass' style='width:150px;height:20px;border:1px solid #37749e;margin-bottom:5px;'>
<br>
<input type=submit value='Login' class='login2' name=Submit style='cursor: pointer;text-decoration:none;font-size:14px; background-color:#46ae18; border:2px solid #58e01b;width:100px;'>
</font>
</form>
</div>
<div class=clear></div>
</div>
$('.loginEXIT').click(function($event){
$('#eaddtf').val('');
$('#login').animate({opacity:0.0},'slow')
$('#login').animate({left:-100000},'fast')
});
我想重置input#eaddtf
的文本框。我怎麼能夠?
這不工作? – 2013-05-14 14:20:10
什麼是$活動? – 2013-05-14 14:20:28
@Deepu,$事件是事件對象.... – 2013-05-14 14:23:09