Jquery 表单隐藏/显示 div 元素
我对一些 jquery 执行没有什么问题。我有一个 div,我想隐藏并显示链接。
$("#butt_form").click(function(){
if ($("#site_form").is(":hidden"))
$("#site_form").slideDown(300);
else
//$("#site_info").hide();
$("#site_form").slideUp(300);
<div class='info_block' id='site_form'>
****************************
</form></div>
<a href='' id='butt_form' class='no'>form: ON</a>
问题是它开始并且在结束之前我认为它停止并且不隐藏。
I have little problem with some jquery execution. I have one div which i want to hide and show with link.
$("#butt_form").click(function(){
if ($("#site_form").is(":hidden"))
$("#site_form").slideDown(300);
else
//$("#site_info").hide();
$("#site_form").slideUp(300);
<div class='info_block' id='site_form'>
****************************
</form></div>
<a href='' id='butt_form' class='no'>form: ON</a>
The problem is that it begin and before end i think it stop and doesn't hide.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么不尝试slideToggle(http://api.jquery.com/slideToggle/)?
那应该可以解决问题。
Why not try slideToggle (http://api.jquery.com/slideToggle/)?
That should do the trick.