Warning: Use of undefined constant G5_TIMEZONE - assumed 'G5_TIMEZONE' (this will throw an Error in a future version of PHP) in /volume1/web/windygram/common.php on line 141 Warning: Use of undefined constant G5_SHOP_URL - assumed 'G5_SHOP_URL' (this will throw an Error in a future version of PHP) in /volume1/web/windygram/extend/apms.extend.php on line 204 Warning: Use of undefined constant G5_SHOP_URL - assumed 'G5_SHOP_URL' (this will throw an Error in a future version of PHP) in /volume1/web/windygram/extend/apms.extend.php on line 205 jQuery radio
개발자게시판

jQuery radio

최고관리자 0 122 2017.12.12 15:10

1. 체크된 radio의 value 가져오기

var radioVal = $(':radio[name="radioValue"]:checked').val();

 

2. radio 버튼 체크하기

// name이 radioValue고, value가 Y인 라디오 버튼 체크

$('input:radio[name=radioValue]:input[value="Y"]').attr("checked", true);

 

// id가 confirm인 radio 체크

$('#confirm').attr("checked", true);

Comments

번호 제목 글쓴이 날짜 조회
2 jQuery checkbox 최고관리자 2017.12.12 128
열람중 jQuery radio 최고관리자 2017.12.12 123