在页面加载 jQuery .slide 时最好的方法是什么?

发布于 2024-12-21 06:25:28 字数 294 浏览 2 评论 0原文

我正在尝试找出一种在页面加载期间 .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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

居里长安 2024-12-28 06:25:28

在脚本标签内写

$(document).ready(function (){
    $("#hiddenField").slideDown("slow");
})

注意:要在网页/html上滑动任何控件,其CSS显示属性应为

display:none

但这里从您尝试显示隐藏字段的代码中使用的 ID 。即使在 display:block 之后,HTML 隐藏字段也不会显示,这就是它们成为隐藏字段的原因。

请验证代码,如果可能的话,请验证您的 html 以及您尝试在页面加载时显示(向下滑动)的元素。

inside the script tag write

$(document).ready(function (){
    $("#hiddenField").slideDown("slow");
})

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.

绿萝 2024-12-28 06:25:28

$(function() { ... here ... }); 中的任何内容都将在页面加载时执行。

$(function() {
    $("#hiddenField").slideDown("slow");
});

Anything within $(function() { ... here ... }); will be executed when the page is loaded.

$(function() {
    $("#hiddenField").slideDown("slow");
});
葬花如无物 2024-12-28 06:25:28
$().ready(function(){
    $("#hiddenField").slideDown("slow");
});
$().ready(function(){
    $("#hiddenField").slideDown("slow");
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文