[jquery] show, hide 여부 if( $("#is_show").css("display") != "none" ) {// code} $("#is_show").is($("#is_show").show()) {// code} 더보기 [jQuery] radio, checkbox ( val, check, is(':checked') ) val (radio)$(':radio[name="rd"]:checked').val(); true, false (checkbox)$(':checkbox).is(':checked');return true, false; 체크set : $('input:radio[name="rd"]:input[value='+rd+']').attr("checked", true); 더보기 [JSTL] 사용방법 반복문1. foreach 샘플 데이터{data : [{key = testkey1, key2 = testkey3}, {key = testkey2, key2 = testkey4}]} 데이터 출력방법${list.key}${list.key2} 인덱스 사용방법 ${list.key}${list.key2}${status.count} 번째 인덱스 참고 current getCurrent()현재 반복 라운드 아이템indexgetIndex()현재 반복 라운드의 제로 기반(zero-based) 인덱스countgetCount()현재 반복 라운드의 1 기반(one-based) 인덱스firstisFirst()현재 라운드가 반복을 통한 첫 번째 패스임을 나타내는 플래그lastisLast()반복현재 라운드가 반복을 통한 마지막 패스임.. 더보기 이전 1 2 3 4 5 6 7 8 ··· 11 다음