HTML源码
EISU Time
XML name:
javascript源码time.js
/*get XML data from cgi which used c */
function getXml(){
var url = '../cgi-bin/getxmldata.cgi'; ------cgi程序所在目录
$.ajax({
type: 'POST',
url: url,
dataType: 'xml', -------dataType必须指定为xml格式
success:function(xml){
$(xml).find('Command').each(function(){
var name = $(this).find('Name').text();
alert(name);
$('#xmlname').val(name);
})
}
});
}
cgi源码
#include
#include
#include
//xml内容,在此直接放在数组中,也可以加载XML文件到动态内存中
char cSockBuf[] = "hello world";
int main(void)
{
printf("%s\n\n","Content type: text/xml"); //必须指定为xml格式
printf("%s",cSockBuf);
return 0;
}
阅读(6954) | 评论(0) | 转发(1) |