如果您执行onclick事件,我正尝试使用标准jQuery函数设置一个有效的单选按钮功能。
http://jqueryui.com/button/#radio
我想做同样的onclick,但不是点击,我想在一个被调用的函数中这样做。
试过这个,但它无法正常工作:
function checkradio() {
$("#labelRADIOVU").button("enable");
$('#RADIOVU').prop('checked', true);
//alert($("input[name='']:checked").val())
document.getElementById("labelRADIOVU").style.color = "white";
document.getElementById("labelRADIOVU").style.backgroundColor = "red";
//document.getElementById("RADIOVU").checked = true;
};