1. 커서 변경
$('body').css('cursor', 'default');
$('body').css('cursor', 'wait');
2. Select Box에서 선택된 Value 찾기
$('#search_sale_pernr_s option:selected').val();
3. Table의 타이틀 Row를 제외한 모든 Row 삭제하기
$("#data_list_table > tbody").children("tr:not(:first)").remove();
4. Table의 마지막 Row 다음에 Row 추가하기
$("#data_list_table > tbody:last").append("<tr><td>값1</td></tr>");
5. innerHTML값 Setting하기
$("#id_total_price").html("<strong>값</strong>");
6. 해당 ID로 지정된 HTML 보이기/숨기기
$("#placeholder").show();
$("#placeholder").hide();
7. ID로 지정된 Form Submit 하기
$("#csf_tab_menu_form").attr("target", "_top");
$("#csf_tab_menu_form").attr("action", "/sabisung/list.jsp");
$("#csf_tab_menu_form").submit();
8. Select Box의 Option 값 확인
$("#search_sale_unit").find("option").each(function() {
alert(this.value);
});
9. Select Box의 특정 값을 가지는 Option 삭제하기
$("#csf_menu_no").find("option").each(function() {
if(this.value == "4") {
//alert(this.selected);
$(this).remove();
}
});
10. Select Box의 특정 값 이후/이전에 Option 추가하기
$("#csf_menu_no").find("option").each(function() {
if(this.value == "3") {
$(this).after("<option value=\"4\">텍스트</option>");
//$(this).before("<option value=\"4\">텍스트</option>");
return false;
}
});
11. each Loop에서의 break/continue 방법
$("#csf_menu_no").find("option").each(function() {
if(this.value == "3") {
return false; //break 의미
return true; //continue 의미
}
});
12. Select Box의 모든 Option 삭제 후 Default Option 추가하기
$("#search_sale_pernr_s").find("option").remove().end().append("<option value=\"\">::사원 선택::</option>");
13. checkbox의 전체 갯수와 선택된 갯수 구하기
- 전체 갯수 : $("input:checkbox[name=is_check]").length
- 선택된 갯수 : $("input:checkbox[name=is_check]:checked").length
- 전체 checkbox 순회하기
$("input:checkbox[name=is_check]").each(function() {
this.checked = true;
});
14. checkbox의 체크 여부 확인
if($("input:checkbox[name=complete_yn]").is(":checked")) == true) {
; //작업
}
15. Table의 특정(ID를 가지는) TR 다음에 TR Row를 추가하기
$("#table_appr_pernr > tbody").children("tr").each(function() {
if(("row_appr_pernr_" + row_no) == $(this).attr('id')) {
$(this).after("<tr><td>사비성</td></tr>");
return false;
}
});
16. Table의 특정(ID를 가지는) TR Row를 삭제하기
$("#table_appr_pernr > tbody").children("tr").each(function() {
if(("row_appr_pernr_" + row_no) == $(this).attr('id')) {
$(this).remove();
return false;
}
});
17. 숫자인지 체크
function is_number(v) {
var reg = /^(\s|\d)+$/;
return reg.test(v);
}
18. 숫자인지 체크 (-/+ 부호까지 체크)
function is_number(v) {
var reg = /^[-+]?\d+$/;
return reg.test(v);
}
19. 소수점 자리수에 맞는 숫자인지 체크 (소수점 2자리까지 체크)
function is_float_2(v) {
var reg = /^[-+]?\d+.?\d?\d?$/;
return reg.test(v);
}
20. 숫자에 콤마 추가하기 (금액단위)
function set_comma(n) {
var reg = /(^[+-]?\d+)(\d{3})/;
n += '';
while (reg.test(n))
n = n.replace(reg, '$1' + ',' + '$2');
return n;
}
게시판 목록
프로그램
| 번호 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|
| 7630 | 10년 전 | 670 | ||
| 7629 |
|
10년 전 | 2415 | |
| 7628 | 10년 전 | 803 | ||
| 7627 |
|
10년 전 | 1044 | |
| 7626 |
|
10년 전 | 1802 | |
| 7625 | 10년 전 | 727 | ||
| 7624 | 10년 전 | 744 | ||
| 7623 |
|
10년 전 | 3120 | |
| 7622 | 10년 전 | 746 | ||
| 7621 |
leeleeleelee
|
10년 전 | 596 | |
| 7620 | 10년 전 | 548 | ||
| 7619 | 10년 전 | 506 | ||
| 7618 | 10년 전 | 1042 | ||
| 7617 | 10년 전 | 733 | ||
| 7616 | 10년 전 | 670 | ||
| 7615 | 10년 전 | 737 | ||
| 7614 | 10년 전 | 1278 | ||
| 7613 |
|
10년 전 | 2091 | |
| 7612 | 10년 전 | 1172 | ||
| 7611 | 10년 전 | 1432 | ||
| 7610 |
|
10년 전 | 1913 | |
| 7609 |
|
10년 전 | 1367 | |
| 7608 |
mwdkim
|
10년 전 | 1143 | |
| 7607 |
|
10년 전 | 1074 | |
| 7606 |
mwdkim
|
10년 전 | 3952 | |
| 7605 | 10년 전 | 701 | ||
| 7604 | 10년 전 | 1038 | ||
| 7603 | 10년 전 | 1659 | ||
| 7602 |
|
10년 전 | 1090 | |
| 7601 |
AniNest
|
10년 전 | 2807 | |
| 7600 |
port443
|
10년 전 | 1046 | |
| 7599 | 10년 전 | 954 | ||
| 7598 | 10년 전 | 1036 | ||
| 7597 | 10년 전 | 4584 | ||
| 7596 |
SeungYeon
|
10년 전 | 906 | |
| 7595 |
untitled
|
10년 전 | 2448 | |
| 7594 |
프로그래머7
|
10년 전 | 1746 | |
| 7593 |
untitled
|
10년 전 | 2387 | |
| 7592 |
untitled
|
10년 전 | 1955 | |
| 7591 |
untitled
|
10년 전 | 2690 | |
| 7590 |
아리마2001
|
10년 전 | 868 | |
| 7589 | 10년 전 | 1119 | ||
| 7588 |
|
10년 전 | 2934 | |
| 7587 | 10년 전 | 1318 | ||
| 7586 | 10년 전 | 681 | ||
| 7585 | 10년 전 | 1714 | ||
| 7584 | 10년 전 | 1422 | ||
| 7583 |
leeleeleelee
|
10년 전 | 1182 | |
| 7582 |
|
10년 전 | 1144 | |
| 7581 | 10년 전 | 1371 | ||
| 7580 | 10년 전 | 1021 | ||
| 7579 |
|
10년 전 | 615 | |
| 7578 | 10년 전 | 1439 | ||
| 7577 |
|
10년 전 | 1884 | |
| 7576 | 10년 전 | 1396 | ||
| 7575 |
멋진남자임
|
10년 전 | 1479 | |
| 7574 | 10년 전 | 2136 | ||
| 7573 | 10년 전 | 3272 | ||
| 7572 | 10년 전 | 773 | ||
| 7571 |
|
10년 전 | 793 | |
| 7570 |
|
10년 전 | 1334 | |
| 7569 | 10년 전 | 1562 | ||
| 7568 |
this1mg
|
10년 전 | 1060 | |
| 7567 |
|
10년 전 | 776 | |
| 7566 | 10년 전 | 929 | ||
| 7565 |
Angel하늘
|
10년 전 | 1027 | |
| 7564 |
seoldi
|
10년 전 | 1273 | |
| 7563 |
|
10년 전 | 1411 | |
| 7562 |
멋진남자임
|
10년 전 | 2105 | |
| 7561 | 10년 전 | 725 | ||
| 7560 |
leeleeleelee
|
10년 전 | 923 | |
| 7559 | 10년 전 | 5065 | ||
| 7558 |
RinaP
|
10년 전 | 803 | |
| 7557 |
|
10년 전 | 1267 | |
| 7556 | 10년 전 | 1206 | ||
| 7555 |
hyohyojj1234
|
10년 전 | 1676 | |
| 7554 | 10년 전 | 1105 | ||
| 7553 |
senseme
|
10년 전 | 1351 | |
| 7552 |
ehdltdoit
|
10년 전 | 1450 | |
| 7551 |
|
10년 전 | 1841 | |
| 7550 |
leeleeleelee
|
10년 전 | 1610 | |
| 7549 | 10년 전 | 2443 | ||
| 7548 | 10년 전 | 1854 | ||
| 7547 |
멋진남자임
|
10년 전 | 1973 | |
| 7546 | 10년 전 | 1020 | ||
| 7545 |
ILMare1003
|
10년 전 | 1304 | |
| 7544 |
|
10년 전 | 1263 | |
| 7543 | 10년 전 | 900 | ||
| 7542 | 10년 전 | 678 | ||
| 7541 |
울라라라우
|
10년 전 | 876 | |
| 7540 | 10년 전 | 1606 | ||
| 7539 | 10년 전 | 951 | ||
| 7538 |
|
10년 전 | 1839 | |
| 7537 | 10년 전 | 3623 | ||
| 7536 |
Gaumi
|
10년 전 | 1433 | |
| 7535 |
프로그램은어려워
|
10년 전 | 1290 | |
| 7534 |
senseme
|
10년 전 | 1217 | |
| 7533 | 10년 전 | 1217 | ||
| 7532 | 10년 전 | 880 | ||
| 7531 | 10년 전 | 2070 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기