当我在 jquerymobile 中动态更改单选按钮的标签时,圆形按钮会消失 HTML
<input type="radio" name="radio-choice-1" id="optiona" value="choice-1" checked="checked">
<label for="optiona" id="labela"></label>
JS
$('label[for=optiona]').text('best option');
可能是什么问题?
在 chrome 开发工具元素中,我观察到此单选按钮的 data-icon 属性已打开,而正确显示的其他单选按钮(内联创建的单选按钮)设置为off。