MXML和AS中使用转义字符的实例。

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx= "http://www.adobe.com/2006/mxml" > <mx:Script> <!--[CDATA[ public function textChange():void { text1.text += "/n"; text1.text += "Here is the /"Text/"."; //ActionScript中使用转义字符 } ]]--> </mx:Script> <mx:Panel paddingTop="10" paddingBottom="10" paddingLeft="10" paddingRight="10" layout="absolute" height="236" width="256" fontWeight="bold" fontFamily="Arial" borderStyle="none" backgroundColor="#c0c0c0"> <mx:Button x="86.5" y="156" label="ACTION" click="textChange();"/> <mx:Panel x="30.5" y="9" width="180" height="121" layout="absolute" borderStyle="outset"> <mx:Text id="text1" x="13" y="5" text=""TEXT" CONTROL" width="126" height="68" textAlign="left" alpha="1.0" enabled="true"/> <!--MXML中使用转义字符--> </mx:Panel> </mx:Panel> </mx:Application> 

 

<?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" width="500"> <mx:Script> <!--[CDATA[ [Bindable] public var myHtmlText:String = "字符演示 <b>小于号:</b> &lt;, <b>大于号:</b> &gt;, <b>与号:</b> &amp;, <b>双引号:</b> &quot;"; //在ActionScript中使用转义字符操作字符串 ]]> </mx:Script> <mx:Text id="htmltest" fontSize="12" width = "300" htmlText="{myHtmlText}" /> <!-- 把变量myHtmlText绑定到一个htmlText属性 --> <mx:Text width="300" fontSize="12"> <mx:htmlText> <!--在MXML中使用CDATA包含的htmlText--> <![CDATA[字符演示 <b>小于号:</b> <, <b>大于号:</b> >, <b>与号:</b> &, <b>双引号:</b> "]]--> </mx:htmlText> </mx:Text> </mx:Application>

你可能感兴趣的:(MXML和AS中使用转义字符的实例。)