您的位置:首页 > 其它

rand.6位数值dechex转换成16进制动态改变单元格颜色

2016-12-15 14:47 387 查看
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>

<?php

//for循环rand6位数 再用dechex转换成16位进制形成6位的颜色编码
//每次刷新都会有不同的值
for($a=0;$a<10;$a++)
{
if($a<=5)
{
$rand.=dechex(rand(0,15));
}
else
{
continue;
}
}

?>

<table width="200" border="0" height="30" bgcolor="#<?php  echo $rand; ?>">
<tr>
<td> </td>
</tr>
</table>

</body>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: