通常,当我们想要自动单击网站上的单选按钮时,我们将使用getElementbyID()
,<input type="radio" name="price" value="123" onclick="changeView(this);">
等。但是,如果只有可用于识别按钮的值,该怎么做?
{{1}}
答案 0 :(得分:1)
您可以使用document.querySelector()。 它可以带有类名,id甚至属性。就您而言,它将是
document.querySelector('input[value="123"]');