Jquery 读取XML的问题在线求解 30
有XML文件如下:(11.xml)<?xmlversion="1.0"standalone="yes"?><DeviceConfig><BasicConfig><Devi...
有XML文件如下:(11.xml)
<?xml version="1.0" standalone="yes"?>
<DeviceConfig>
<BasicConfig>
<DeviceName>adg</DeviceName>
<DeviceID>1232</DeviceID>
</BasicConfig>
<CommPara>
<DeviceModel>semins</DeviceModel>
<BaudRate>9600</BaudRate>
<Parity>Even</Parity>
<Flow>None</Flow>
<ID>COM1</ID>
<DataBits>8</DataBits>
<StopBits></StopBits>
<ReportComm>1</ReportComm>
</CommPara>
</DeviceConfig>
现在想新建一个HTML页面,把这个XML里的配置数据中的
<DeviceName>adg</DeviceName>
<DeviceID>1232</DeviceID>
放到两个不同的text里面,请问要怎么写代码才可以?XML是放在服务器中的,在线急等!!! 展开
<?xml version="1.0" standalone="yes"?>
<DeviceConfig>
<BasicConfig>
<DeviceName>adg</DeviceName>
<DeviceID>1232</DeviceID>
</BasicConfig>
<CommPara>
<DeviceModel>semins</DeviceModel>
<BaudRate>9600</BaudRate>
<Parity>Even</Parity>
<Flow>None</Flow>
<ID>COM1</ID>
<DataBits>8</DataBits>
<StopBits></StopBits>
<ReportComm>1</ReportComm>
</CommPara>
</DeviceConfig>
现在想新建一个HTML页面,把这个XML里的配置数据中的
<DeviceName>adg</DeviceName>
<DeviceID>1232</DeviceID>
放到两个不同的text里面,请问要怎么写代码才可以?XML是放在服务器中的,在线急等!!! 展开
1个回答
展开全部
利用jquery的ajax,就可以读取了,开启服务器访问就可以了
追问
请问具体要怎么做?以前没有接触过JQ,现在必须要用这个了,可不可以给个HTML的代码给我看看,我照着上面先把这个例子做出来
追答
你看下jquery 的ajax就可以了
$.ajax({
url: 'document.xml',
type: 'GET',
dataType: 'xml',
timeout: 1000,
error: function(){
alert('Error loading XML document');
},
success: function(xml){
// do something with xml
}
});
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询