文本框中不允许有空格
我有 CKEditor wysiyg。用户提交文章后,我将执行以下操作:
if(!ctype_space($_POST['rtxt_article']))
{
//do something
}
上面的代码确保输入具有一些实际字符并且不是普通的空格。它与常规文本区域配合得很好。但是,它不适用于所见即所得。
我正在使用 CKEditor,一旦用户点击提交。代码点击 //do some ,而 ctype_space 根本没有任何效果。
我检查了 HTML 源代码,发现输出为空格,根本没有字符,所以我想知道为什么 ctype_space 不适用于 wysiyg textarea。
从数据库获取文章后,输出将如下所示:
<div id="textcontent"> </div>
知道吗?
I have CKEditor wysiyg. Once user submits the article, i do the following:
if(!ctype_space($_POST['rtxt_article']))
{
//do something
}
The above code makes sure the input has some actual character(s) and its not a plain whitespaces. Its works well with regular textarea. However, it doesn't work with wysiyg.
I'm using CKEditor, once user clicks submit. The code hits //do something and ctype_space has no effect at all.
I check the HTML source, i found the output as whitespaces, no characters at all, so i wonder why ctype_space doesn't work with wysiyg textarea.
The output, after fetching the article from db, would look like this:
<div id="textcontent"> </div>
Any idea?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
wysiwyg 可能会添加某种(空)HTML 标签,甚至使用实体
转换空格。
尝试以下检查:
这也会捕获不需要的输入,例如
等。
The wysiwyg might add some kind of (empty) HTML tags or even transform whitespaces with the entity
.
Try following check:
This will also catch unwanted input like
etc.