- 1、本文档共7页,可阅读全部内容。
- 2、有哪些信誉好的足球投注网站(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
使用ajax技术无刷新动态调用新浪股票实时数据
使用ajax技术无刷新动态调用新浪股票实时数据
由于最近网速慢的缘故,查看股票信息时网页老是打不开。这几天一直在研究ajax,于是用jquery自己做了一个自动读取新浪股票实时数据的页面
新浪的财金频道一直感觉做得很好。但由于最近网速慢的缘故,查看股票信息时网页老是打不开。这几天一直在研究ajax,于是用jquery自己做了一个自动读取新浪股票实时数据的页面。
html
head
titleajax test/title
meta http-equiv=Content-Type content=text/html; charset=UTF-8 /
script type=text/javascript src=jquery.js/script
script type=text/javascript...
function ajaxRequest()...{
$.ajax(...{
url: /list=sh000001,sh601939,sh600016,sh600528,sh600667,sh601390,sh601398,sh601857,sh600028,
type: GET,
dataType: html,
timeout: 2000,
success: function(response)...{
var stocks = response.split(;);
for(var i=0; istocks.length-1; i++)...{
var content = stocks[i];
var temp1 = content.split(=)[0];
var temp2 = content.split(=)[1];
var code = temp1.substr(temp1.length - 6, 6);
var temp3 = temp2.replace(, );
var name = temp3.split(,)[0];
var tday_f = temp3.split(,)[1];
var yest_f = temp3.split(,)[2];
var curr_f = temp3.split(,)[3];
var temp_f = curr_f - yest_f;
$(#a+i).html(code);
$(#b+i).html(name);
if(curr_f yest_f) ...{
$(#c+i).html(font color=red + curr_f + /font);
} else if(curr_f yest_f) ...{
$(#c+i).html(font color=green + curr_f + /font);
} else ...{
$(#c+i).html(curr_f);
}
$(#d+i).html(tday_f);
$(#e+i).html(yest_f);
if(temp_f 0) ...{
$(#f+i).html(font color=red + temp_f.toFixed(2) + /font);
$(#g+i).html(font color=red + ((temp_f / yest_f) * 100).toFixed(2) + /font % );
} else if(temp_f 0) ...{
$(#f+i).html(font color=green + temp_f.toFixed(2) + /font);
$(#g+i).html(font color=green + ((temp_f / yest_f) * 100).toFixed(2) + /font % );
} else ...{
$(#f+i).html(temp_f.toFixed(2));
$(#g+i).html(((temp_f / yest_f) * 100).toFixed(2) + % );
}
$(#h+i).html(temp3.split(,)[4]);
$(#i+i).html(temp3.split(,)[5]);
}
}
});
}
function pageInit() ...{
window.setInterval(ajaxRequest(),3000);
}
/script
style...
.tr_cls {...}{
height:30px;
font-size:16px;
font-family:Times New Roman, Times, serif;
background-color:#FFFFCC
}
/st
文档评论(0)