我创建了一个使用 jquery 动画的搜索表单,例如NextLevelSearch。我希望当我打开搜索表单并刷新页面时它不会关闭。我怎样才能做到这一点?
我尝试过但没有用e.preventDefault();
,return false;
我知道这与我的问题无关。
这是我的代码:
$globalsearch_submit.click(function(){
$('#stat').hide();
$('.wrapper-simple').animate({'width':'275px'})
.end().find('.wrapper-simple input[type=text]').css({opacity: 0, visibility: "visible"}).animate({'width': '231px', opacity: 1})
.end().find('.wrapper-simple .button').animate({ 'right': '40px' })
.end().find('.wrapper-simple input[type=submit]').animate({'marginLeft':'235px', opacity: 1}, 10)
return false;
});
$('.wrapper-simple input[type=submit]').click(function() {
$('#stat').show();
$('#stat').delay(500).css('opacity',0).show().animate({opacity:1},100);
$('.wrapper-simple').animate({'width':'40px'})
.end().find('.wrapper-simple input[type=text]').animate({'width': '1px', opacity: 0})
.end().find('.wrapper-simple .button').animate({ 'right': '0' })
.end().find('.wrapper-simple input[type=submit]').animate({'marginLeft':'0', opacity: 0}).attr('value', '');
return false;
});
请帮忙!谢谢你。
(我很抱歉我的英语不好)