如何写“{”在 mxml 标签本身的内联事件处理程序中?
如何在 mxml 标签本身的内联事件处理程序中编写“{”? 假设我想写这个并且不想为这两行语句创建一个函数...
click="{if { (_absences!='')chkAbsences.selected = true; chkRegularHrs.selected = false;} else {chkAbsences.selected=false};}"
谢谢大家...
How to write '{' in inline event handler in the mxml tag itself?
Suppose I want to write this and dont want to make a function for this two line statement...
click="{if { (_absences!='')chkAbsences.selected = true; chkRegularHrs.selected = false;} else {chkAbsences.selected=false};}"
Thanks guys...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你必须逃离那个角色。
&
也会发生同样的情况。编译 MXML 时,首先它必须是有效的 XML 文件。因此,您需要适应某些字符并编写丑陋的内容,例如
if ( X && Y ) ...
如何逃脱..
PS:按照@bedwyr所说的操作并使用
script
块冗长的函数。稍后你会感谢他/她的。you have to escape that character. the same happens with the
&
.When compiling MXML, first it has to be a valid XML file. So, there are certain characters for which you need to accommodate and write ugly stuff like
if ( X && Y ) ...
How to escape..
PS: Do what @bedwyr says and use a
script
block for lengthy functions. you'll thank him/her later.这真的很简单:
It's really simple: