input
{
border: expression((this.type=="radio")?"1px #93BEE2 solid":"");
}
你可以这样写.但是不推荐...这个只支持IE...想兼容多浏览器的话就要另外给input定样式.
第二种方案:
还可以使用css的type选择器input[type="radio"] {background-color:blue;},但是缺点是不支持ie6,所以最好的办法是专门为radio写个样式:
<input type="radio" class="radio_style" />
css:
.radio_style {background:blue;}