将:
$("input[type=radio][name=optionsContractGroup][value=201]").attr("checked",true);
替换成:
$("input[type=radio][name=optionsContractGroup][value=201]").prop("checked",true);
将attr方法替换成prop方法.
radio Buttons and .attr('checked','checked') does NOT work in IE7