Check a radio button with javascript(使用 javascript 检查单选按钮)
问题描述
由于某种原因,我似乎无法弄清楚这一点.
For some reason, I can't seem to figure this out.
我的 html 中有一些单选按钮可以切换类别:
I have some radio buttons in my html which toggles categories:
<input type="radio" name="main-categories" id="_1234" value="1234" /> // All
<input type="radio" name="main-categories" id="_2345" value="2345" /> // Certain category
<input type="radio" name="main-categories" id="_3456" value="3456" /> // Certain category
<input type="radio" name="main-categories" id="_4567" value="4567" /> // Certain category
用户可以选择任何他/她想要的,但是当某个事件触发时,我想设置 1234
设置为选中单选按钮,因为这是默认选中单选按钮.
The user can select whichever he/she wants, but when an certain event triggers, I want to set 1234
to be set checked radio button, because this is the default checked radio button.
我已经尝试过这个版本(有和没有 jQuery):
I have tried versions of this (with and without jQuery):
document.getElementById('#_1234').checked = true;
但它似乎没有更新.我需要它明显更新,以便用户可以看到它.有人可以帮忙吗?
But it doesn't seem to update. I need it to visibly update so the user can see it. Can anybody help?
我只是累了,忽略了 #
,感谢您指出它和 $.prop()
.
I'm just tired and overlooked the #
, thanks for pointing it out, that and $.prop()
.
推荐答案
不要将 CSS/JQuery 语法(#
表示标识符)与原生 JS 混合.
Do not mix CSS/JQuery syntax (#
for identifier) with native JS.
原生 JS 解决方案:
document.getElementById("_1234").checked = true;
jQuery 解决方案:
$("#_1234").prop("checked", true);
这篇关于使用 javascript 检查单选按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用 javascript 检查单选按钮


- Fetch API 如何获取响应体? 2022-01-01
- 如何使用 JSON 格式的 jQuery AJAX 从 .cfm 页面输出查 2022-01-01
- Flexslider 箭头未正确显示 2022-01-01
- CSS媒体查询(最大高度)不起作用,但为什么? 2022-01-01
- addEventListener 在 IE 11 中不起作用 2022-01-01
- Quasar 2+Apollo:错误:找不到ID为默认的Apollo客户端。如果您在组件设置之外,请使用ProvideApolloClient() 2022-01-01
- 400或500级别的HTTP响应 2022-01-01
- 使用RSelum从网站(报纸档案)中抓取多个网页 2022-09-06
- Css:将嵌套元素定位在父元素边界之外一点 2022-09-07
- 失败的 Canvas 360 jquery 插件 2022-01-01