jquery操作radio

88284453 2013-09-09

<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);
	}

相关推荐