如何写“{”在 mxml 标签本身的内联事件处理程序中?

发布于 2024-10-31 02:30:45 字数 232 浏览 0 评论 0原文

如何在 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 技术交流群。

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

发布评论

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

评论(2

音盲 2024-11-07 02:30:47

你必须逃离那个角色。 & 也会发生同样的情况。
编译 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.

原来是傀儡 2024-11-07 02:30:47

这真的很简单:

<s:Button>
    <s:click>
        <![CDATA[
            function clickHandler(event:MouseEvent):void
            {
                trace("CLICK!");
            }
        ]]>
    </s:click>
</s:Button>

It's really simple:

<s:Button>
    <s:click>
        <![CDATA[
            function clickHandler(event:MouseEvent):void
            {
                trace("CLICK!");
            }
        ]]>
    </s:click>
</s:Button>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文