标签:
#2015-8-12
##Math随机数
###**1**. JS 随机数(不要问我为什么,百度也说不清,百度最新版)
var rand
= (function(){
var today
= new Date();
var seed
= today.getTime();
function rnd(){
seed
= ( seed * 9301 + 49297 ) % 233280;
return seed
/ ( 233280.0 );
};
return function rand(number){
return Math.ceil(rnd(seed)
* number);
};
})();
console.log(rand(100))
console.log(rand(100))
console.log(rand(100))
###2. JS Math 产生随机数
function ext(min, max) {
return Math.floor(min + Math.random() * (max - min));
(var random=ext(1-n个数的量))//这里的ext为上面的定义的方法
###3. JS链接最终样式表;以后都用这个(代码单词太长,不懂意思)
alert(document.defaultView.getComputedStyle(ev,null).backgroundColor)
###4. 画布获取html的id;并且掺入2d参数(画布必需品)
canvas = document.getElementById("canvas1")//获取ID对象
cxt = canvas.getContext(‘2d‘)//掺入2d参数
标签:
原文地址:http://www.cnblogs.com/ysb255236/p/4728793.html