var radio_types = document.getElementsByName("radio_type"); for (var i = 0; i < radio_types.length; i++) { if (radio_types[i].value == _type) { $("#"+radio_types[i].id).prop("checked",true); //不添加下面的代码上面行代码不起作用 layui.use([
TagHelper+Layui封装组件之Radio单选框 标签名称:cl-radio 标签属性: asp-for:绑定的字段,必须指定 asp-items:绑定单选项 类型为:IEnumerable<SelectListItem> 太简单了,直接上代码了 RadioTagHelper代码 using System; using System.Collections.Generic; using Microsoft.AspNetCore.Mvc.Rendering; using Microsof