我正在使用Medium-editor进行内容编辑。我可以通过链接按钮的帮助创建链接,但是当我将光标移动到输入框(链接输入框 - 占位符txtbox)时,文本选择消失了。如果可以保持选择?Click to see the image reference
这里我附上了图片。
答案 0 :(得分:0)
是的,您可以在显示文本框之前使用saveSelection()
方法来记住选择。稍后,当您想要恢复它时,只需致电restoreSelection()
。
在内部,这些辅助方法只是调用exportSelection()
并在内部存储选择数据,然后调用importSelection(selection)
并将存储的值传递给它。
有一些关于如何使用这些方法的其他文档,您可以找到它here
示例:
var editor = new MediumEditor('.editable');
// ------------------
// Later, before you display your textbox
editor.saveSelection();
// Display the textbox
// ------------------
// Later, when you want to restore the selection to what it was before
editor.restoreSelection();