Polymer Paper-Radio-Group - how to have multiple radio buttons with the same name
问题 I'm using Paper Elements from the Polymer Project to build a form, and have run into a problem using the paper-radio-group tag and its children, paper-radio-button . With a normal radio button list, I would do the following: <input type="radio" name="myFieldName" value="MyFirstOption" /> <input type="radio" name="myFieldName" value="MySecondOption" /> <input type="radio" name="myFieldName" value="MyThirdOption" /> Note that the name attributes are the same, grouping the radio buttons and