是否可以将 Range 对象设置为“向后选择”?
我创建一个Range对象,然后将此Range添加到选择中
window.getSelection ().addRange(myRange);
如何设置选择方向? 我的意思是可以使用选择的 anchorNode
、anchorOffset
、focusNode
和 focusOffset
属性检查方向。
I create a Range object and then add this Range to selection
window.getSelection ().addRange(myRange);
How to set the selection direction?
I mean direction which can be checked using the anchorNode
, anchorOffset
, focusNode
and focusOffset
properties of selections.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在支持 的浏览器上执行此操作
extend()
(MDN)的方法选择
对象。 Mozilla、WebKit 和 Opera 支持; IE 不包含版本 11。extend()
已添加到 HTML 编辑 API 规范,因此它可能还会出现在 IE 中。这是一个示例函数:
You can do this on browsers that support the
extend()
(MDN) method ofSelection
objects. Mozilla, WebKit and Opera support it; IE does not up to and including version 11.extend()
has been added to the HTML Editing APIs spec so it may yet appear in IE.Here's an example function: