jQuery .slideDown 执行两次而不是一次
我是 jquery 新手,遇到了一个我无法解决的问题,
我希望在页面加载时我的内容向下滑动,所以我使用下一个代码:
$(document).ready(function () {
$("#content").hide();
$("#content").slideDown(1000);
});
当我加载页面时,内容正常向下滑动,然后内容被隐藏并且再次滑落。
当我转到 css 并执行 #content{display: none;}
而不是 $("#content").hide();
时,一切正常。 (没有js的浏览器不能使用这个)
有谁知道这个的原因吗?
谢谢!
I'm new to jquery and bumped into a problem i can't fix
I want that on pageload my content is sliding down so i use the next code:
$(document).ready(function () {
$("#content").hide();
$("#content").slideDown(1000);
});
when i load the page the content slides down narmally, than the content gets hidden and slides down again.
When i go to the css and do #content{display: none;}
instead of $("#content").hide();
everything works fine. (can't use this for browsers without js)
Does anyone know the cause of this?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您是说使用 css
#content{display: none;}
时一切正常比我提供你使用 Jquery .css() 方法( http://api.jquery.com/css/< /a> )..
你可以像
这样使用它: sipmle 那样。
我也同意@Billy Moon的观点,这可能是浏览器特定的错误,或者您可能正在代码中的某处调用页面刷新命令。
You are saying that everything works fine while using css
#content{display: none;}
than i offer u to use Jquery .css() method( http://api.jquery.com/css/ )..
u can use it like :
sipmle as that.
and i also agree with @Billy Moon , it can be a browser specific bug or u may be calling a page refresh command, somewhere within ur code.
你的代码里面没有问题。它位于代码中的其他位置。
这不是某个函数中的函数调用被调用了两次吗?
Your code has no problem inside. It's somewhere else in your code.
isn't that function call in some function that is called twice?