script
체크박스 한개이상 선택해 주세요.
- 관리자 2020.09.18 인기
-
- 6,678
- 0
var f = document.form;
var chk_count = 0;
for (var i=0; i < f.length; i++) {
if (f.elements[i].name == "target[]" && f.elements[i].checked)
chk_count++;
}
if (!chk_count) {
//alert("1개이상 선택해 주세요."); location.reload();
alert("1개이상 선택해 주세요.");
return false;
}
return true;
}
function select_pass(m_value) {
var f = document.form;
if(m_value ==0) {
return;
}
if (!check_confirm()) {
return;
}
if (!confirm("이동하시겠습니까?")) {
return;
}
f.action = "./move.php?m_value="+m_value;
f.submit();
}
- 이전글폴더업로드2020.09.18
- 다음글json_encode2020.09.18
댓글목록
등록된 댓글이 없습니다.