FAQ 页面的 Jquery Expander 插件 - 请

发布于 2024-10-21 17:55:11 字数 641 浏览 1 评论 0原文

常见问题解答页面会加载,问题的答案会显示一秒钟,然后隐藏。 页面应该加载而不显示答案。它应该加载并仅立即显示问题。 我使用的脚本是这样的:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
</script>
<script type="text/javascript"
src="http://plugins.learningjquery.com/expander/jquery.expander.js">
</script>
<script type="text/javascript">
    $(function () {          
$('div.readmore').expander({
            slicePoint: 119,
            expandText: 'Read More',
expandSpeed: 'slow',
            userCollapseText: 'Close'
        });
    });
</script>

我可以插入什么来不再让这种情况发生? 非常感谢。

The FAQ page loads and the answers to the questions show up for a second and then hide.
The page should load without showing the answers at all. It should load showing right away the questions only.
The script I use is this:

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js">
</script>
<script type="text/javascript"
src="http://plugins.learningjquery.com/expander/jquery.expander.js">
</script>
<script type="text/javascript">
    $(function () {          
$('div.readmore').expander({
            slicePoint: 119,
            expandText: 'Read More',
expandSpeed: 'slow',
            userCollapseText: 'Close'
        });
    });
</script>

What can I insert to not let this happen anymore?
Thank you very much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

瑾夏年华 2024-10-28 17:55:11

在插件演示页面中我看到他们使用


$(文档).ready(函数() {
...
}

而你却没有

in plugin demo page I see they use


$(document).ready(function() {
...
}

and you don't

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文