我的页面上有几个iframe(编辑器)。
如何找到iframe当前的选择?
在这个编辑器中我有有效的html上下文。这看起来像:
<iframe id="dynmaical_id">
<head>
...
</head>
<body>
<p>
<span>Text</span> //cursor is set somewhere here
</p>
</body>
<iframe>
答案 0 :(得分:1)
您可以通过检查是否设置了document.activeElement
来确定当前选择是否在iframe中。然后,您可以使用document.activeElement.contentDocument.getSelection()
查找iframe中的选择。