Rumah > Artikel > hujung hadapan web > js简单的概率计算
这篇文章主要介绍了js 概率计算(简单版),需要的朋友可以参考下
核心代码:
//7:3运算 if(Math.ceil(Math.random()*10)>3){ //占比=7 alert('7'); window.location.href="http://www.baidu.com" rel="external nofollow" ; }else{ //占比=3 alert(3); widnow.location.href="http://www.php.cn"; }
通过随机数大小来判断,最好访问哪个网址。大家可以根据自己的需求修改即可。
Atas ialah kandungan terperinci js简单的概率计算. Untuk maklumat lanjut, sila ikut artikel berkaitan lain di laman web China PHP!