文本框中不允许有空格

发布于 2024-12-17 06:46:42 字数 482 浏览 1 评论 0原文

我有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静赏你的温柔 2024-12-24 06:46:42

wysiwyg 可能会添加某种(空)HTML 标签,甚至使用实体   转换空格。

尝试以下检查:

if (trim(strip_tags($_POST['rtxt_article'])) != "") {
  // do something
}

这也会捕获不需要的输入,例如

<p></p>
<div></div>

等。

The wysiwyg might add some kind of (empty) HTML tags or even transform whitespaces with the entity  .

Try following check:

if (trim(strip_tags($_POST['rtxt_article'])) != "") {
  // do something
}

This will also catch unwanted input like

<p></p>
<div></div>

etc.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文