在页面加载 jQuery .slide 时最好的方法是什么?
我正在尝试找出一种在页面加载期间 .slide 的方法,但我不确定这样做的最佳实践。我熟悉使用 .slide 方法,但不确定如何修复它以在页面加载时执行,而不是在单击时执行。
$(function() {
$("#clickLink").click(
function () {
$("#hiddenField").slideDown("slow");
}
)
});
I'm trying to figure out a way to .slide on a during page load, but I am unsure of the best practice to do so. I am familiar with using the .slide method, but am unsure how I can fix it to execute on page load, rather than a click.
$(function() {
$("#clickLink").click(
function () {
$("#hiddenField").slideDown("slow");
}
)
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
在脚本标签内写
注意:要在网页/html上滑动任何控件,其CSS显示属性应为
display:none
但这里从您尝试显示隐藏字段的代码中使用的 ID 。即使在
display:block
之后,HTML 隐藏字段也不会显示,这就是它们成为隐藏字段的原因。请验证代码,如果可能的话,请验证您的 html 以及您尝试在页面加载时显示(向下滑动)的元素。
inside the script tag write
Note: to SlideDown any of your control on the webpage/html its css display property should be
display:none
But here from your ID use in the code you are trying to display hidden field. HTML hidden fields are not displayed even after
display:block
thats the reason they are hidden fields.Please verify the code and if possible so us your html and which element you are trying to display (slide down) on page load.
$(function() { ... here ... });
中的任何内容都将在页面加载时执行。Anything within
$(function() { ... here ... });
will be executed when the page is loaded.