文本范围选择 MSIE
我可以在 Firefox 中以编程方式轻松设置 2 个以上元素的选择, 但我在 IE 上没有成功,所以我希望这里的任何人都可以帮助我。
I can easily set the selection on 2+ elements programatically in Firefox,
But have had no success with IE so I hope anyone here can help me with this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
IE 不支持多个并发选择的 TextRanges,无论是通过编程方式还是手动选择。 您可以拥有多个选定元素的 ControlRange ,但不是文本片段。
其他嵌入 Web 浏览器控件的浏览器也可能支持 支持多个文本范围:
但截至目前 IE 还没有这样做,而且我不知道有任何其他主机应用程序可以这样做。 或者除了 Firefox 3 之外的任何其他允许它的浏览器。
IE doesn't support multiple concurrent selected TextRanges, whether programmatically or manually selected. You can have a ControlRange of multiple selected elements, but not stretches of text.
It's possible for other browsers that embed the Web Browser control to support multiple text ranges:
But as of today IE doesn't, and I don't know of any other host application that does. Or indeed of any other browser than Firefox 3 that allows it.