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 检查单选按钮


基础教程推荐
- 如何在特定日期之前获取消息? 2022-01-01
- Node.js 有没有好的索引/搜索引擎? 2022-01-01
- 什么是不使用 jQuery 的经验技术原因? 2022-01-01
- WatchKit 支持 html 吗?有没有像 UIWebview 这样的控制器? 2022-01-01
- 为什么我在 Vue.js 中得到 ERR_CONNECTION_TIMED_OUT? 2022-01-01
- 如何使用sencha Touch2在单页中显示列表和其他标签 2022-01-01
- 如何使用 CSS 显示和隐藏 div? 2022-01-01
- Javascript 在多个元素上单击事件侦听器并获取目标 2022-01-01
- jQuery File Upload - 如何识别所有文件何时上传 2022-01-01
- 每次设置弹出窗口的焦点 2022-01-01