亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

2019-8-21 jquery隨機(jī)色與隨機(jī)值

Original 2019-08-21 10:18:12 1586
abstract:<!DOCTYPE html><html><head><meta charset="UTF-8"><title>隨機(jī)值與隨機(jī)色</title><script src="https://code.jquery.com/jquery-3.4.1.js"></script&g

<!DOCTYPE html>

<html>

<head>

<meta charset="UTF-8">

<title>隨機(jī)值與隨機(jī)色</title>

<script src="https://code.jquery.com/jquery-3.4.1.js"></script>

<style>

a{

display:block;

width:100px;

height:100px;

color:#fff;

float: left;

margin:30px;

border-radius: 50%;

text-decoration: none;

text-align: center;

line-height: 100px;

font-size: 20px;

}

button{

float:left;

}

</style>

</head>

<body>

<script>

$(document).ready(function(){

function ref(){

$('a').each(function(){

$(this).css('backgroundColor','rgb('+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+','+Math.floor(Math.random()*256)+')');

})

$('a').each(function(){

$(this).text(Math.floor(Math.random()*99));

})

}

ref();

$('button').click(function(){

ref();

})

})

</script>

<button>刷新</button>

<a href="">1</a>

<a href=""></a>

<a href=""></a>

<a href=""></a>

<a href=""></a>

<a href=""></a>

</body>

</html>


Correcting teacher:天蓬老師Correction time:2019-08-22 15:31:45
Teacher's summary:獲取隨機(jī)數(shù), 可以完成很多有意思的東西, 例如隨機(jī)從數(shù)組中取一個數(shù), 抽獎等

Release Notes

Popular Entries