大型民用汽车:黄底黑字。
小型民用汽车:蓝底白字。
武警专用汽车:白底红“WJ”、黑字。
使、领馆外籍汽车:黑底白字及空心“使”字标志。
其他外籍汽车:黑底白字。
试车牌照:蓝底白字,数字前有“试”字标志。
临时牌照:白底红字,数字前有“临时”二字。
汽车补用牌照:白底黑字。
车辆“移动证”:白底红字。
第3 第7 第8 第9类 都是白底的车牌。JS设置字体颜色是通过修改css样式来实现的。html页面:
<body>
<form name="form1">
<input type="text" name="title" id="title" value="黑色头发" style="font-family:Helvetica">
<select name="selector" id="selector" onchange="changeColor()">
<option value="one">红色 </option>
<option value="two">绿色 </option>
</select>
<select name="selector2" id="selector2" onchange="changeStyle()">
<option value="one">宋体 </option>
<option value="two">楷体 </option>
</select>
</form>
</body>
</html>
js改变字体颜色的方法:
<script>
function changeColor()
{
var title = document.getElementById("title").value
var select = document.getElementById("selector").value
if(select=="two")
{
document.getElementById("title").style.color="green"
}
else document.getElementById("title").style.color="red"
}