[AS3]As3如何动态读取php(XML)节点内容
以前只用Flash读过xml, 如今我想用xml做远程数据库, 需要用asp来远程读, 研究了半天, 终于成功了! PS: item表示项目, childnodes表示儿子, node就是节点的意思
以前只用Flash读过xml, 如今我想用xml做远程数据库, 需要用asp来远程读, 研究了半天, 终于成功了! PS: item表示项目, childnodes表示儿子, node就是节点的意思;
程序代码
- <%
- dim xml
- set xml = Server.CreateObject("Microsoft.XMLDOM")
- xml.async = false
- Call xml.SetProperty("ServerHTTPRequest", true) '远程加载时使用
- xml.Load("http://www.cuplayer.com/news.asp?id=713")
- set blogchild=xml.getElementsByTagName("lost63")
- the_text=blogchild.item(0).childnodes(0).childnodes(4).text
- 'the_text=blogchild.item(0).text
- response.write the_text
- %>
热门文章推荐
- [HLS]做自己的m3u8点播系统使用HTTP Live Streaming(HLS技术)
- [FMS]FMS流媒体服务器配置与使用相关的介绍
- [AS3]什么是M3U8,与HTML5的区别是什么
- AS2.0 让flash自适应全屏,并且不自动缩放
- [AS3]as3.0的sound类常用技巧整理
- [AS3]as3与ByteArray详解、ByteArray介绍、ByteArray用法
- 关于RTMP,RTMPT,RTMPS,RTMPE,RTMPTE协议的介绍
- [JS]分享浏览器弹出窗口不被拦截JS示例
请稍候...