我有这个HTML代码:

<input type="radio" name="printTemplate" value="5" checked="checked">
<input type="radio" name="printTemplate" value="2">


如何在javascript中选中(勾号)值“ 2”?
我无权更改html代码,这是公共网站。
这是此无线电的XPath,值为“ 2”

//*[@id="frmSubmit"]/table/tbody/tr[4]/td/p[2]/table/tbody/tr/td[1]/input[3]

最佳答案

您将添加checked属性。

<input type="radio" name="printTemplate" value="2" checked>


使用jQuery,您也可以轻松按值定位单选按钮

$("input[name=printTemplate][value=2]").prop("checked", true);

关于javascript - 如何在JavaScript中检查/勾选单选输入,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17068357/

10-16 09:24