我正在尝试将 a 设置PuiRadioButton
为checked
但我遇到了问题。底层纯 HTML 输入元素被选中,但 PrimeUI 不显示更改。
我有两个元素:
<input type="radio" name="peopleSelection" id="peopleRadioButton" value="people" checked="checked" />
和
<input type="radio" name="peopleSelection" id="groupRadioButton" value="group" />
我已经尝试过以下声明
$('#groupRadioButton').attr('checked', 'checked');
它在JSFiddle中运行良好。但是当我检查 HTML 时,正确的输入元素被成功检查,但 PrimeUI 没有显示。
我还尝试了这些变体:
$('#groupRadioButton').prop('checked', true);
$('#groupRadioButton').attr('checked', 'checked');
$('#groupRadioButton')[0].checked = true;
不幸的是,我在PrimeUi 文档页面上找不到set
orget
方法。
如何选择/取消选择 PrimeUI 单选按钮?
提前致谢