jQuery 可调整大小句柄 z 索引
我注意到 jQuery UI 的可调整大小的句柄位于页面中所有其他元素的顶部。我使用 Chrome 的开发人员工具进行了检查,发现它们自动给出了 1001 的 z 索引。有没有办法禁用此功能并只给它们与可调整大小的元素相同的 z 索引? 谢谢。
I noticed that the jQuery UI's resizable handles are on top of all other elements in the page. I checked using Chrome's developer tools and saw that they are automatically given a z-index of 1001. Is there a way to disable this and just give them the same z-index as the resizable element?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
对我来说效果最好,因为如果没有
!important
规则就会被覆盖。Works best for me, cause without
!important
the rule gets overwritten.z-index
是使用 CSS 设置的,而不是 JavaScript。您将需要编辑负责的 CSS,在本例中:或者定义您自己的规则来覆盖该行为。有关详细信息,请参阅此页面:http://www.mail- archive.com/[电子邮件受保护]/msg09524.html
The
z-index
is set with CSS, not JavaScript. You will need to edit the CSS responsible, in this case:Or, define your own rule to override the behavior. See this page for more information: http://www.mail-archive.com/[email protected]/msg09524.html
对于我们来说,这是覆盖 jQuery-ui 对象的默认设置的最方便且最简单的方法。您可以将“可调整大小”组件替换为其任何组件。只需确保它在加载 jQuery 之后但在 $(element).resziable() 调用之前运行即可。
$.extend($.ui.ressized.prototype.options, {
z索引:2147483647
});
For us this was the most convenient and least hacky way to override the default settings for jQuery-ui objects. You can replace the "resizable" component with any of their components. Just make sure this is run after jQuery is loaded but before your $(element).resziable() call.
$.extend($.ui.resizable.prototype.options, {
zIndex: 2147483647
});
而不必在 CSS 中添加 !important z-index 规则,您只需从可调整大小的原型中删除此选项,然后所有句柄将获得您在 CSS 中定义的 z-index。通常你甚至不需要定义一个。
instead having to put !important z-index rules in your CSS, you can just remove this option from the resizable prototype, and then all handles will get the z-index you define in your CSS. usually you don't even have to define one.
实际上,jQuery UI 1.12.1 可调整大小 resizer z-index默认值为90。
这是没有记录,但我们可以初始化它:
Actually, jQuery UI 1.12.1 Resizable resizer z-index default is 90.
That's not documented, but we can initialize it :