在框架之间拖放 - chrome
我有一个网站 http://fewbs.com。我的左侧有一个快捷方式(书签)部分。这里我提供了菜单和子菜单以及快捷方式和菜单的拖放。虽然我已经能够在 IE 和 FF 中做到这一点,但它不适用于 Opera 和 chrome。
在 IE 中默认工作,在 FF 中使用 -moz-user-focus:ignore; -moz-用户选择:无;
。
谁能建议我如何在 Opera 和 chrome 中实现相同的目标?
I have a website http://fewbs.com. I have a shortcuts (bookmarks) section onto the left. Here I provide menus and submenus and drag and drop of shortcuts and menus. Though I have been able to do it in IE and FF but its not working for opera and chrome.
In IE it works by default, in FF by using -moz-user-focus: ignore; -moz-user-select: none;
.
Can anyone suggest how may I be able to achieve the same in opera and chrome?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 Internet Explorer 和 Opera 中,使用 unSelectable 属性来实现类似的功能。
在 Internet Explorer、Google Chrome 和 Safari 中,还有另一种可能使元素变得不可选择。如果取消 onselectstart 事件,则选择过程不会启动。
有关更多详细信息,请参阅 unSelectable 属性和 onselectstart 事件。
来源 http://help.dottoro.com/lcrlukea.php
In Internet Explorer and Opera, use the unSelectable attribute for similar functionality.
In Internet Explorer, Google Chrome and Safari, there is another possibility to make an element unselectable. If the onselectstart event is canceled, the selection process does not start.
For further details, please see the unSelectable attribute and the onselectstart event.
source http://help.dottoro.com/lcrlukea.php