开发过程中会出现inputtype=radio在google中点击无响应,在firefox下inputtype=radiostyle无法修改的问题.这是一个提示:是No设置input的透明度为0,使用background:url(...)no-repeat;写按钮被选中与否的效果。CSS:.labinput{filter:alpha(opacity=0);-moz-opacity:0;-khtml-opacity:0;opacity:0;}.lab{display:inline-block;background:url(../images/home_default.png)no-repeat;margin-right:3px;cursor:pointer;}.onCheck{background:url(../images/home_radio.png)no-repeat;}JS:$("body").on("click",".lab",function(){$(this).attr("class","labonCheck");$(this).siblings().attr("class","lab“);})影响: