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