我在我的 jsp 上使用 wysihat 引擎。它工作得很好,但是当我尝试添加一个预览功能时,假设从即时创建的 iFrame 中读取并将其值放在隐藏的预览 div 中,它无法读取 iframe 包含的 html。有什么解决方法吗?谢谢!在此示例中,我想使用 jquery 返回正文中的值
以下 iFrame 没有写入我的 jsp 中,但它通过 WYSihat.js 文件附加到 div:
<iframe id="iframeId" class="abc">
<html>
<head></head>
<body>
<br>
some text here
</br>
</body>
</html>
</iframe>
如何返回“这里的一些文本”并将其传递给以下函数:提示,这个 iFrame 是由 WYSiHat.js 文件动态创建的,因为它在我的 jsp 页面中并不难写
function preview() {
alert("hi"+$('iframe.editor').contents().find('body').text());
}