文本区域限制动作脚本3
以下代码不起作用:
<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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
尝试编写
“^&”
。 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.