暂不清楚为什么初始化加载的时候回选择所有表格和radio选中最后一个,故延时0.2秒达成效果
$(document).ready(function(){
setTimeout(function () {
$("input[type='radio']").eq(0).prop("checked",true);
// $("#").attr("checked","checked")
document.getElementById('emdOrderList').rows[1].style.backgroundColor = "#87CEEB";
},200)
});