jquery操作radio
程序员文章站
2022-07-07 19:57:32
...
<p> <label>组件属性:</label> <input type="radio" onclick="chooseProperty()" name="property" value="0" {if !$info[property] || $info[property]==0}checked{/if} />公共组件 <input type="radio" onclick="chooseProperty()" name="property" value="1" {if $info[property]==1}checked{/if} />特殊模板组件 </p>
用jquery获取radio数据
function chooseProperty(){ var item = $("input[name='property']:checked").val(); alert(item); }