关键时刻,散户奋勇买单
到了行情的最关键时刻,散户奋勇直追,个个一马当先,以锐不可势向前直冲,27.65买的的散户跑在最前面,跑到主力面前,欢快地掏出钱包:主力,你拉升辛苦了,这场盛宴就由我来买单吧!
function ForDight(Dight,How){
var Dight = Math.round (Dight*Math.pow(10,How))/Math.pow(10,How);
return Dight;
}
function changeAgreeStyle(agree,against,topicid){
if(agree==0&&against==0)return;
var id1="agreeTopic_"+topicid;
var id2="againstTopic_"+topicid;
var n1 = (agree/(agree+against))*100;
var n2 = (against/(agree+against))*100;
document.getElementById(id1).innerHTML=ForDight(n1,2)+"%("+agree+")";
document.getElementById("tup").style.width=ForDight(n1,2)*0.6+"px";
document.getElementById(id2).innerHTML=ForDight(n2,2)+"%("+against+")";
document.getElementById("tdown").style.width=ForDight(n2,2)*0.6+"px";
}