xml代码:
<?xml version="1.0" encoding="UTF-8"?><rows><row gid="03" pid="2015340" gname="金钱榜" code="1,2,3" awardtime="2015-12-13 12:30:00" ginfo="1040,346,173" ninfo="8371,0,27179" etime="" sales="44081812" pools="0" trycode="3,2,1" auditdate="2015-12-13 11:29:32" />
<rownow gid="03" gname="金钱榜" nowpid="2015641" nowendtime="2015-12-14 13:30:00" nowfendtime="2015-12-14 14:40:00" trycode="" />
<rowtoday gid="03" gname="金钱榜" code="" awardtime="2015-12-14 11:30:00" nowpid="2015642" nowendtime="2015-12-14 13:30:00" nowfendtime="2015-12-14 14:40:00" nowstate="1" pools="" trycode="" /></rows>
jquery代码:
//主程序
Class('App', {
use: 'countDown',
ready: true,
index:function (){
this.listdata=[];
this.kjlistdata=[];
this.todaykjlistdata=[];
this.loadaopencode();
},
loadaopencode: function (){
this.ajax({
url:"/aopencode.xml",
retry:1,
cache:false,
end:function (data, i){
this.qXml('//rownow', data.xml, function (o, i){
this.listdata[this.listdata.length] = o.items;
});
this.qXml('//row', data.xml, function (o, i){
this.kjlistdata[this.kjlistdata.length] = o.items;
});
this.qXml('//rowtoday', data.xml, function (o, i){
this.todaykjlistdata[this.todaykjlistdata.length] = o.items;
});
this.qXml('//row', data.xml, function (o, i){
if (o.items.gid=="03"
){
this.showkj(o.items,data.date);
}
if(o.items.gid=="03"){
if(o.items.trycode==""||o.items.trycode==undefined){
$("#12sjh").html("");
}else{
var trycodes = o.items.trycode.replaceAll(',',' ');
$("#12sjh").html("消费榜:"+trycodes);
}
}
});
}
});
},
this.get("#dlt_code").html(''+code[0].split(',').join('')+''+' '+code[1].split(',').join('')+'');
this.countdown(this.get("#dlt_countdown"),this.get("#dlt_kj_countdown"),nextendtime,d,awardtime,o.gid);
}else if (o.gid=='80'){
this.get("#sfc_pid").html(o.pid);
this.get("#sfc_pools").html(o.pools);
this.get("#sfc_kjdate").html(o.auditdate==undefined||o.auditdate==''?o.awardtime.substr(0,10):o.auditdate.substr(0,10));
this.get("#sfc_code").html(o.code.split(',').join(' '));
var aginfo = o.ginfo.split(",");
var aninfo = o.ninfo.split(",");
var rjinfo = this.getginfo("81");
if(aginfo.length>1)
this.countdown(this.get("#sfc_countdown"),'',this.getnextendtime(o.gid),d,'',o.gid);
}else if (o.gid=='03'){
this.get("#sd_pid").html(o.pid);
this.get("#sd_kjdate").html(o.awardtime.substr(0,10));
$("#qlc_code").html('<b>'+code[0].split(',').join('</b><b>')+'</b>'+' <b class="cm_kj_redball cm_marginleft10">'+code[1].split(',').join('</b><b class="cm_kj_redball cm_marginleft10">')+'</b>');
}
},
原html代码:
<div class="cm_center" style="margin-top:0;">
<div class="clear">
<div class="cm_left cm_kj_tx cm_w383">
<div class="clear"><span class="cm_left"><strong>金钱榜</strong> <em id="sd_kjdate">2015-12-13</em> <em id="sd_pid">2015641</em>期</span><span class="cm_right">开榜:每天12:30</span></div>
<div class="cm_kj_ball cm_kj_ylball cm_margintop15"><em id="sd_code"><b>1</b><b>2</b><b>3</b></em> <em class="cm_w100 cm_inlinblock" style="font-weight:bold;" id="12sjh">消费榜:3 2 1</em></div>
</div>
</div>
</div>
想修改的html代码:
<div class="cm_center" style="margin-top:0;">
<div class="clear">
<div class="cm_left cm_kj_tx cm_w383">
<div class="clear"><span class="cm_left"><strong>【这里】</strong> <em id="sd_kjdate">【这里】</em> <em id="sd_pid">【这里】</em>期</span><span class="cm_right">开榜:每天12:30</span></div>
<div class="cm_kj_ball cm_kj_ylball cm_margintop15"><em id="sd_code"><b>【这里】</b></em> 【这里】<em class="cm_w100 cm_inlinblock" style="font-weight:bold;" id="12sjh">:</em><em><span style="font-weight: 700">【这里】</span></em></div>
</div>
</div>
</div>
请各位大虾帮帮忙啊!给个思路啊!