Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
160 views
in Technique[技术] by (71.8m points)

javascript - How to show the right percentage?

fiddle: https://jsfiddle.net/252jxsjq/1/

how can I show 65 instead of 64.72343432...?

Finally,how can I make the number of clicks equal for all the user? For example, now if i click 60 times on a button, if I change the pc the times displayed are 0.

jQuery:

var counter = localStorage.getItem('rans') || 0;

$('.redanswer').click(function(){
     localStorage.setItem('rans', ++counter);
     $( '.bpercent' ).html( counter1 * 100 / (counter1+counter) + "%" );
     $( '.rpercent' ).html( counter * 100 / (counter1+counter) + "%" );

 });

var counter1 = localStorage.getItem('bans') || 0;

$('.blueanswer').click(function(){
     localStorage.setItem('bans', ++counter1);
     $( '.rpercent' ).text( counter * 100 / (counter1+counter) + "%" );
     $( '.bpercent' ).text( counter1 * 100 / (counter1+counter) + "%" );
});
See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

Use Math.round Function of JavaScript.

$('.redanswer').click(function(){
 localStorage.setItem('rans', ++counter);
 $( '.bpercent' ).html( Math.round( counter1 * 100 / (counter1+counter) ) + "%" );
 $( '.rpercent' ).html( Math.round( counter * 100 / (counter1+counter) ) + "%" );
});

Local storage saves state or variable to client machine (or say browser). As Mike said, If you want to save value for all devices, than You will need some server side Implementations which can manage clicks counter for all users all around the world.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...