jquery 조작radio

769 단어 jqueryRadio
                            <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로 라디오 데이터 가져오기
	function chooseProperty(){
		var item = $("input[name='property']:checked").val();
		alert(item);
	}

좋은 웹페이지 즐겨찾기