选择输入类型文本,页面将滑动而不是单击链接

发布于 2024-11-02 13:07:12 字数 372 浏览 2 评论 0原文

好的,我有一个网站,在侧边栏上有一个表格,但没有足够的空间来容纳整个内容。我决定使用这个 jQuery Pageslide http://srobbin.com/blog/jquery-pageslide/< /a> 但我不想单击链接来激活页面幻灯片,而是想在用户单击可见的输入类型文本框时激活它。

这可能吗?我的网站位于 http://www.publicis-malaysia.com/thegladesv2

Okay so I have this website where I have a form on the sidebar but there's not enough space for the whole thing. I've decided to use this jQuery pageslide http://srobbin.com/blog/jquery-pageslide/ but instead of clicking the link to activate the pageslide, I want to activate it when user clicks on the visible input type text box.

Is this possible? My site is located at http://www.publicis-malaysia.com/thegladesv2

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

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

发布评论

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

评论(1

一城柳絮吹成雪 2024-11-09 13:07:12

根据 pageslide 网站上的示例,这应该很容易:注意选择器已更改为 input[type=text]

<script type="text/javascript">
    $(document).ready(function() {
        $('input[type=text]').pageSlide({
            width: "300px"
        });
    });
</script>

您可能希望选择器为 $('#sidebar input[type =文字]')

Based on the sample on the pageslide site this should be easy: note the selector is changed to input[type=text]

<script type="text/javascript">
    $(document).ready(function() {
        $('input[type=text]').pageSlide({
            width: "300px"
        });
    });
</script>

You might want the selector to be $('#sidebar input[type=text]')

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