CKEDITOR 内数据上的 jquery keyup
我正在构建一个小假 html/css 手机,它会自动从页面上的几个输入框插入数据,如下所示:(手机是使用 iframe 插入的..(不要问)..)
$('#mgSiteDescription').bind('keyup', function() {
var iframedoc = $('.liveDemoFrame').get(0).contentDocument;
$(iframedoc).find('#header h2').html($(this).val());
});
这工作得很好对于我的输入字段。
现在,我在文本区域中使用 CKEditor,这让我遇到了问题。由于页面上的文本区域没有实时更新,我的 keyup 事件不起作用,因此不会更新我的假手机。如何调整 CKEditor 以更新隐藏的文本区域?或者甚至可以访问 CKEditor 的 iframe 并提取该数据?
谢谢。
I'm building a little fake html/css mobile phone which automatically inserts data from a several input boxes on a page like so: (the phone is inserted using an iframe..(don't ask)..)
$('#mgSiteDescription').bind('keyup', function() {
var iframedoc = $('.liveDemoFrame').get(0).contentDocument;
$(iframedoc).find('#header h2').html($(this).val());
});
This works absolutely fine for my input fields.
Now, I'm using CKEditor for my textareas which brings me to my problem. As the textarea isn't being updated live on the page, my keyup event isn't working and therefore, not updating my fake phone. How can I adjust CKEditor so that it updates the hidden textarea? Or maybe even access CKEditor's iframe and pull that data out?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
更新:
我已经成功地通过 CKEditor 获得了一个 keyup 功能,它甚至从我的假手机 iFrame 中删除了内容。我只是不知道如何将 CKeditor 的值/数据插入到我的 iframe 中..如果这有意义吗?
我猜我需要更新这一点?
有什么想法吗?
编辑:
所以我让它的工作方式足够接近我的预期。这是与我处境相似的任何人的最终代码:
即使您不使用 iFrame,它仍然可以工作。只需破解 jquery iframe 的东西即可。
Update:
I've managed to get a keyup function working through CKEditor and it even removes the content from my fake mobile phone iFrame. I just don't know how to then insert the value/data of CKeditor into my iframe..if that makes sense?
It's this bit I need to update I'm guessing?
Any ideas with what?
Edit:
So I got it working near enough to how I intended. Here's the final code for anyone in a similar position to me:
Even if you're not using iFrames, that'll still work. Just hack out the jquery iframe stuff.