选中radiobutton

        $(function () {            

$("input[name='RadioType']").each(function () {                

if ($(this).val() == '<%: ViewData["RadioType"]%>') {               

      $(this).attr("checked", "checked");                 }             })         })

原文地址:https://www.cnblogs.com/yisheng/p/2754435.html