选择输入类型文本,页面将滑动而不是单击链接
好的,我有一个网站,在侧边栏上有一个表格,但没有足够的空间来容纳整个内容。我决定使用这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据 pageslide 网站上的示例,这应该很容易:注意选择器已更改为
input[type=text]
您可能希望选择器为
$('#sidebar input[type =文字]')
Based on the sample on the pageslide site this should be easy: note the selector is changed to
input[type=text]
You might want the selector to be
$('#sidebar input[type=text]')