0

我在javascript中更改了单选按钮的标签并调用了刷新函数。但它永远不会正确刷新。http://jsfiddle.net/V3qb9/69/

$("#radio-choice-d").siblings("label").text("Good");
//$("input[type='radio']:first").attr("checked",true).checkboxradio("refresh");
$('input:[name=radio-choice-b]:radio:checked').checkboxradio("refresh");
4

1 回答 1

0

我想通了,应该是

$("label[for='radio-choice-d'] span.ui-btn-text").text('new text');
于 2012-07-26T03:46:25.920 回答