如何重新加载单选按钮列表值? 我指定了文本框值如下,
document.getElementById('txtvalue' + id).value = document.getElementById('txtoriginalvalue' + id + '2').innerHTML;
我尝试了相同的单选按钮,但我无法重新加载。请帮帮我。感谢。
答案 0 :(得分:1)
请查看以下链接。
http://jsbin.com/nohoqomuru/1/edit?html,js,output
function Cancel(){
var sId = '#'+selectedId;
$(sId).prop("checked", true);
$('#Save').attr('disabled' , true);
$('#Cancel').attr('disabled' , true);
}
答案 1 :(得分:0)
radioButtonVal = document.getElementById('radiooriginalvalue'+ id +'2')。innerHTML;
$(“input [name = radiobuttonname'”+ id +“'] [value =”+ radioButtonVal +“]”)。attr('checked','checked');
通过这样做我得到了输出。