隨機函數與JSON
阿新 • • 發佈:2017-12-04
math ceil scrip ttr and random highlight json ava
1.隨機函數
//隨機函數 //Math.round() 四舍五入 Math.round(Math.random());//區0-1之間的整數即0或1 //0~10之間的整數 Math.round( Math.random()*10); //5~10之間的整數 Math.round( Math.random()*5+5); //20~100之間的整數 Math.round( Math.random()*80+20); //x~y之間的整數 Math.round( Math.random()*(y-x)+x); //0~x之間的整數 Math.round( Math.random()*x); //1~x Math.ceil( Math.random()*x);
2.JSON
var json={"name":"leo","age":24}; json.name;//leo json["nume"];//leo var imgData={ imgUrl:["img/1.png","img/2.png","img/3.png","img/4.png"], txt:["圖片一","圖片二","圖片三","圖片四"] } imgData.imgUrl[0];//img/1.png //json遍歷 var json1={‘name‘:‘carol‘,‘age‘:18,‘fun‘:‘moile‘}; for (var attr1 in json1) { // alert(attr1); alert(json1[attr1]); }
隨機函數與JSON