根据条件是否满足给input标签添加属性。
<input type="radio" value="1" name="PortType" @((Model.PortType==1|| Model.PortType==null || Model.PortType==0) ? "checked":"") />进口
<input type="radio" value="2" name="PortType" @(Model.PortType==2 ? "checked":"")/>出口
切记:表达式里面不要使用分号结束,否则提示缺少括号,因为已经结束匹配不到后面的括号了。