사용자 도구

사이트 도구


tag:셀렉터

TAG: 셀렉터

문서날짜사용자설명
2022/12/12 16:52 주레피 JQuery Selector(셀럭터) 예제 자료 * description : jquery selector 예제 자료 모음 * author : 주레피 * email : dhan@repia.com * lastupdate : 2022-12-12 Intro Case Study 다중 속성 선택 $('form input[type="radio"][value="5"]').prop('checked', true); $('form input[type="radio"][value="5"]').each(function(index, item){ var random = Math.floor(Math.random()*5+1); // console.log(random); $(this).parent().find('input[type="radio"][value="' + random + '"]').prop('checked', true); });…