====== 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);
});
===== Term =====
===== Tip =====
===== Troubleshooting =====
===== Ref =====
{{tag>주레피 jquery selector 셀렉터}}