标签: javascript android ios google-chrome textselection
我想隐藏chrome文本选择弹出窗口,如果用户选择任何文本,则不应出现默认文本选项弹出窗口(附带的屏幕截图)。
有没有可能使用javascript而不删除整个文本选择功能?
答案 0 :(得分:3)
你可以使用css,像这样,尝试一下:)
user-select: none;
.disable-selection{ -moz-user-select:none; -ms-user-select:none; -webkit-user-select:none; }
<p class="disable-selection">can't select this</p> <p>can select this</p>