可调整大小的选择选项下拉帮助
我正在使用这个插件 http://www.erichynds.com/jquery/ jquery-ui-multiselect-widget/ 它工作得很棒!!但我想使用 jquery ui 库使选择下拉框能够调整大小。当我尝试时,我最终得到两个选择框。我仍在学习jquery,但在这种情况下我会使用bind吗?或代表?
I'm using this plugin http://www.erichynds.com/jquery/jquery-ui-multiselect-widget/ and it works awesome!! but I'd like to make the select dropdown boxes resize able using the jquery ui library. when i try it i end up with two select boxes. I'm still learning jquery but is this case where i would use bind? or delegate?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不知道你说的插件,但尝试这样做:
$('#multiselect-demo')
是你自己的选择下拉框。然后:如果它不能按您想要的方式工作,请尝试以下操作:
$('.multiselect-menu').ressized();
我希望它有所帮助。快乐编码!
PS:请记住,您可以更改
可调整大小
行为。有关详细信息,请参阅文档和示例。I don't know the pluging that you said, but try to do this:
$('#multiselect-demo')
is your own select dropdown box. And then:If it doesn't work like you want, try this instead:
$('.multiselect-menu').resizable();
I hope it helps. Happy codding!
PS: remember that you can change
resizable
behaviour. See documentation and examples for more information about this.