jQuery UI Selectable:如何显示行进蚂蚁风格的套索?

发布于 2024-10-26 11:16:19 字数 426 浏览 1 评论 0原文

我刚刚开始将一些 jquery UI 优点注入到我的应用程序中,并且正在努力解决一个相当小的问题。我有可选插件工作,但当拖动选择多个时,我似乎可以显示套索选框框。

jquery UI 网站上的工作示例: http://jqueryui.com/demos/ selectable/#default

我的尝试: http://jsbin.com /amare5/2/edit

使用的代码是 jquery UI 站点示例的精确副本。我缺少什么?

I've just started injection some jquery UI goodness into my app and am struggling with a rather minor issue. I have the selectable plugin working but I can seem to get the lasso marquee box thing to show up when dragging to select multiple.

Working Example on jquery UI site: http://jqueryui.com/demos/selectable/#default

My Attempt: http://jsbin.com/amare5/2/edit

The code used is an exact copy of the example of the jquery UI site. What am I missing?

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

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

发布评论

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

评论(4

﹏半生如梦愿梦如真 2024-11-02 11:16:19

成功了!谢谢@mattball!无需导入整个样式表,您只需要这个块:

.ui-selectable-helper{
  position:absolute;
  z-index:100;
  border:1px dotted black;
} 

WORKED! Thank you @mattball! Without having to import the whole style sheet you just need this chunk:

.ui-selectable-helper{
  position:absolute;
  z-index:100;
  border:1px dotted black;
} 
吃素的狼 2024-11-02 11:16:19

您缺少 jQuery UI CSS 文件。试试这个:http://jsbin.com/amare5/4。我将其添加到 中:

<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css"> 

You're missing the jQuery UI CSS file. Try this: http://jsbin.com/amare5/4. I added this to the <head>:

<link rel="stylesheet" href="http://jqueryui.com/themes/base/jquery.ui.all.css"> 
聽兲甴掵 2024-11-02 11:16:19

如果您只想查找 ui-selectable-helper 类定义,则只需导入可选择的 CSS 即可。

<link rel="stylesheet" href="http://jqueryui.com/themes/base/selectable.css">

If you're only looking for the ui-selectable-helper class definition, you can simply import the selectable CSS.

<link rel="stylesheet" href="http://jqueryui.com/themes/base/selectable.css">
浪荡不羁 2024-11-02 11:16:19

如果您需要将选择器放在对话框窗口的顶部,请在样式表中的某个位置定义它:

.ui-selectable-helper{
    z-index: 101; /* 101 or more */
} 

If you need to bring the selector on top of the dialog windows, define this somewhere in your stylesheet:

.ui-selectable-helper{
    z-index: 101; /* 101 or more */
} 
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文