我尽力而为,我无法找到一种方法让用户能够选择在fancytree中显示为节点文本的文本。我不是在谈论选择节点本身,而是复制显示的文本。
例如,在这个fancytree演示页面中,http://wwwendt.de/tech/fancytree/demo/index.html#sample-configurator.html 在第一个节点中,我想突出显示并选择文本“简单节点”而无法。
任何帮助表示赞赏! Ĵ
答案 0 :(得分:0)
您可以尝试像这样定义并向节点添加类
.selectable {
-webkit-touch-callout: text; /* iOS Safari */
-webkit-user-select: text; /* Safari */
-khtml-user-select: text; /* Konqueror HTML */
-moz-user-select: text; /* Firefox */
-ms-user-select: text; /* Internet Explorer/Edge */
user-select: text; /* Non-prefixed version, currently
supported by Chrome and Opera */
}
(或定义一个直接解决当前节点标题选择器的规则)