文本区域限制动作脚本3

发布于 2024-12-14 03:02:19 字数 209 浏览 1 评论 0原文

以下代码不起作用:

<s:TextArea name = "Desc1" id="Desc1" x="8" y="233" width="162" height="369" restrict="^&"/>

我试图不允许用户输入“&”,在Flash中它运行良好,但在Flash构建器的文本区域中它给我一个错误。

The following code doesnt work:

<s:TextArea name = "Desc1" id="Desc1" x="8" y="233" width="162" height="369" restrict="^&"/>

im trying to not allow the user to input de "&",in flash it works well but in textarea of flash builder it gets me an error.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

风苍溪 2024-12-21 03:02:20

尝试编写“^&”。 mxml 标记中的 & 字符必须进行 html 转义。如果您尝试在绑定属性中编写 AND 条件 (text="{bool1 && bool2?'ok':'ko'}"),情况也是一样的非常不可读但很有用。

Try writing "^&". The & character in an mxml tag must be html-escaped. It's the same if you try to write an AND condition in a bound property (text="{bool1 && bool2?'ok':'ko'}"), it's highly unreadable but useful.

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