我如何找到我的选择在哪个iframe?

时间:2010-09-16 07:56:06

标签: javascript firefox dom

我的页面上有几个iframe(编辑器)。

如何找到iframe当前的选择?

在这个编辑器中我有有效的html上下文。这看起来像:

<iframe id="dynmaical_id">
  <head>
  ...
  </head>
  <body>
    <p>
      <span>Text</span> //cursor is set somewhere here
    </p>
  </body>
<iframe>

1 个答案:

答案 0 :(得分:1)

您可以通过检查是否设置了document.activeElement来确定当前选择是否在iframe中。然后,您可以使用document.activeElement.contentDocument.getSelection()查找iframe中的选择。