我在表单中的一个textareas上使用了一个jQuery wysiwyg编辑器插件,我希望对它应用验证。 wysiwyg jQuery插件生成iframe
,因此我需要检测if there is any text inserted
inside the iframe
而不是文本区域。
<div class="wysiwyg" style="width: 581px;">
<ul class="panel" role="menu">
<div style="clear: both;"></div>
<iframe id="id_message_bodyIFrame" frameborder="0" src="javascript:false;" style="min-height: 170px; width: 573px;" tabindex="0">
<html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
</head>
<body style="margin: 0px;">
my text I want to find if exists
<br _moz_dirty="">
</body>
</html>
</iframe>
</div>
<textarea id="id_message_body" title="Please add a message on the text box above." name="message_body" cols="70" rows="10" style="display: none;"></textarea>
<div id="req_message_body" class="req" style="display: none;">This is required</div>
</div>
如何找到iframe中是否已插入文字并在<div id="err"> This field is required</div>
旁边创建错误消息的任何想法?感谢您的帮助!
答案 0 :(得分:3)
$('#id_message_bodyIFrame').contents().find('body').text()
会给你文字然后你可以添加
.length()
到最后测试它的持续时间