Flex 3.0 版本 页面: 代码: <?xml version="1.0" encoding="utf-8"?> <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" width="850" height="650" color="#DBF1F6" creationComplete="InfoService.send();" initialize="Init()"> <mx:HTTPService id="InfoService" url="http://madebychina.cn/MessageLeave.aspx?type=2" resultFormat="e4x" method="POST" showBusyCursor="true" /> <mx:HTTPService id="addService" url="" resultFormat="text" method="POST" showBusyCursor="true"> <mx:request xmlns=""> </mx:request> </mx:HTTPService> <mx:Script> <!--[CDATA[ import mx.collections.ArrayCollection; import mx.rpc.events.FaultEvent; import mx.rpc.events.ResultEvent; import mx.controls.Alert; public function cmdSave():void { Alert.show("fdsa"); } public function Init():void { } ]]--> </mx:Script> <mx:Panel x="50" y="34.25" width="750" height="550" layout="absolute" fontSize="12" title="留言咨询" color="#01080A"> <mx:TitleWindow x="419.4" y="113.2" width="268.21918" height="295.54794" layout="absolute" title="联系我们"> <mx:Label x="15.15" y="25.7" text="联系人:" width="59.520546" height="20.068493"/> <mx:Label x="81.45" y="25.65" width="152.87671" height="20" id="lblLinkMan" text="{InfoService.lastResult.name}" /> <mx:Label x="15.1" y="52.65" text="手 机:" width="59.520546" height="20.068493"/> <mx:Label x="81.45" y="52.6" width="152.87671" height="20" id="lblMobie" text="{InfoService.lastResult.mobie}"/> <mx:Label x="15.15" y="79.6" text="电 话:" width="59.520546" height="20.068493"/> <mx:Label x="81.5" y="79.65" width="152.87671" height="20" id="lblTel" text="{InfoService.lastResult.tel}"/> <mx:Label x="15.200001" y="106.55" text="传 真:" width="59.520546" height="20.068493"/> <mx:Label x="81.55" y="106.55" width="152.87671" height="20" id="lblFax" text="{InfoService.lastResult.fax}"/> <mx:Label x="15.2" y="133.5" text="邮 箱:" width="59.520546" height="20.068493"/> <mx:Label x="81.5" y="133.55" width="152.87671" height="20" id="lblEmail" text="{InfoService.lastResult.email}"/> <mx:Label x="15.15" y="160.5" text="网 址:" width="59.520546" height="20.068493"/> <mx:Label x="81.5" y="160.4" width="152.87671" height="20" id="lblWeb" text="{InfoService.lastResult.net}"/> <mx:Label x="15.15" y="187.4" text="地 址:" width="59.520546" height="20.068493"/> <mx:Label x="81.5" y="187.4" width="152.87671" height="20" id="lblAddress" text="{InfoService.lastResult.address}"/> <mx:Label x="15.15" y="214.3" text="邮 编:" width="59.452057" height="20.068493"/> <mx:Label x="81.35" y="214.35" width="152.87671" height="20" id="lblPost" text="{InfoService.lastResult.post}"/> </mx:TitleWindow> </mx:Panel> </mx:Application> 注意 :取值的时候不加lastResult 会报错。{InfoService.lastResult.fax} XML格式如下: <?xml version="1.0" encoding="utf-8" standalone="yes" ?> <info><name>111</name><mobie>gf</mobie><tel>gf</tel><fax>gf</fax><email>gf</email><net>gf</net><address>fg</address><post>fg</post></info>