textarea使用kindeditor时,用js验证textarea是否为空
我的textarea用的是kindeditor,我用js验证textarea是否为空时:我什么都没做,提交后他会提示我内容不能为空,就算我输入文字,也会再一次提示,内容不能为空,我再一次提交内容后,他就提交了,输入空格也是一样的情况,我输入空格后,会提示不能不空,当我再一次提交后,还是能提交.
<script type="text/javascript">
KindEditor.ready(function(K) {
var editor1 = K.create('textarea[name="content"]', { width : '100%', allowFileManager : true });
prettyPrint(); });
function checkform(){
var mycontent=document.getElementById("content").value;
if(mycontent=="")
{
alert("回帖不能为空,请输入回帖内容!");
return false;
}
if(editor1.html().length==0){
alert('输入不能为空');
return false;
}
return true;
}
</script>
<form action="/xxlt/addreply" method="post" name="form1" id="form1" onsubmit="return checkform();">
<input type="hidden" name="user_sno" value="${sessionScope.loginsno}">
<input type="hidden" name="notice_id" value='${noticemes.get("id") }'>
<textarea id="content" name="content" style="width:700px;height:300px;visibility:hidden;"></textarea>
<p>
<button name="huitie" type="submit" class="SUBMIT" > 回帖</button>
</p>
</form>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)