解决方法
补充Nathan Lee答案
input[type="radio"]:checked{ visibility:hidden; }
是一个选项来指定检查的单选按钮
input[type="radio"][value="text"]:checked{ visibility:hidden; }
是一个选项,指定一个值为等于’text’的检查单选按钮(在您的示例中为’none’)
更多信息:https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors
如果值不知道,一些jQuery可以做到这一点:http://api.jquery.com/attribute-equals-selector/