iframe内容更改时捕获事件



我正在使用sceditor插件 作为富有编辑。该插件在我的HTML页面内生成一个iframe。当我键入所有内容时,此编辑器在该iFrame中添加了一些HTML元素。现在,我需要在更改iframe内容上捕获事件。如何执行此操作?

这是插件生成的HTML代码:

<div id="editor" ... >
     ...
    <iframe>
       <!DOCTYPE html>
       <html>
          <head>...</head>
          <body>
              //This content changes when i type every thing
          </body>
      </html>
    </iframe>
</div>

使用

$(pointerToContainerEditor).sceditor('instance')

(考虑$(pointertocontaineritor)一个变量,其中包含与.sceditor()方法初始化SCE相同的变量。)
要获取您正在使用的编辑实例。然后使用方法

http://www.sceditor.com/api/sceditor/bind/

http://www.sceditor.com/api/sceditor/val/

使用.bind()将事件侦听器添加到编辑器中。最常见的DOM事件可用。使用.val()在当前模式下获取当前值。阅读上面的链接以获取更多信息,请随时询问您是否仍然没有得到它。

相关内容

  • 没有找到相关文章

最新更新