可调整大小的选择选项下拉帮助

发布于 2024-10-21 14:06:44 字数 259 浏览 4 评论 0原文

我正在使用这个插件 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 技术交流群。

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

发布评论

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

评论(1

我是男神闪亮亮 2024-10-28 14:06:44

我不知道你说的插件,但尝试这样做:

$("#multiselect-demo").multiselect({
   selectedText: "# of # selected"
});

$('#multiselect-demo') 是你自己的选择下拉框。然后:

$('#multiselect-demo').resizable();

如果它不能按您想要的方式工作,请尝试以下操作:

$('.multiselect-menu').ressized();

我希望它有所帮助。快乐编码!

PS:请记住,您可以更改可调整大小行为。有关详细信息,请参阅文档和示例

I don't know the pluging that you said, but try to do this:

$("#multiselect-demo").multiselect({
   selectedText: "# of # selected"
});

$('#multiselect-demo') is your own select dropdown box. And then:

$('#multiselect-demo').resizable();

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.

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