예제1)

 var get_val = "1,2,3,4";           //string 문자열

 var arr_val = get_val.split(",");  //배열로 분할



 for(var i = 0; i < arr_val.length; i++){ 

    if(arr_val[i]==3){

       arr_val.splice(i,1);      //조건문에 성립하면 해당배열 제거

    } 

 } 



var result = arr_val.join(",");   //배열을 ,로 구분지어 하나의 string으로 생성

result > 1,2,4

 

예제2)

 var get_val = "1,2,3,4";           //string 문자열

 var arr_val = get_val.split(",");  //배열로 분할



 for(var i = 0; i < arr_val.length; i++){ 

    if(arr_val[i]==2){

       arr_val.splice(i,2);     //조건문에 성립하면 해당배열 제거

    } 

 } 

var result = arr_val.join(",");   //배열을 ,로 구분지어 하나의 string으로 생성

result > 1,4

 

참고 : http://blog.naver.com/PostView.nhn?blogId=mu_kk&logNo=130139967019

'* Programming > JQuery' 카테고리의 다른 글

Select Box change 이벤트  (0) 2019.12.02
삼항연산자  (0) 2019.11.19
Select Box 제어  (0) 2019.11.11
input 체크박스  (0) 2019.10.16
문자열 제거 이벤트  (0) 2018.08.09

조건문 ? 조건이 참인 경우 결과값 : 조건이 거짓인 경우의 결과값

 

예제1,

$("#companyNm option:selected").val() == "" ? 0 : $("#companyNm option:selected").val()

 

예제2,

var number = 6;

number>5 ? alert("5보다 큰수") : alert("5보다 작은수")

'* Programming > JQuery' 카테고리의 다른 글

Select Box change 이벤트  (0) 2019.12.02
문자분할,배열제거,배열을 문자로 join  (0) 2019.11.20
Select Box 제어  (0) 2019.11.11
input 체크박스  (0) 2019.10.16
문자열 제거 이벤트  (0) 2018.08.09

1. 선택된 값 읽기

$("#selectBox option:selected").val();

$("select[name=name]").val();

 

2. 선택된 이름 읽기

$("#selectBox option:selected").text();

 

3. 선택된 위치

var index = $("#test option").index($("#test option:selected"));

 

4. 마지막 옵션 추가하기

$("#selectBox").append("<option value='1'>Apples</option>");

$("#selectBox").append("<option value='2'>After Apples</option>");

 

5. 첫번째 옵션 추가하기

$("#selectBox").prepend("<option value='0'>Before Apples</option>");

 

6. 모든 옵션 없애고 추가하기

$("#selectBox").html("<option value='1'>Some oranges</option><option value='2'>MoreOranges</option>");

 

7. n번째 옵션 변경하기

$("#selectBox option:eq(1)").replaceWith("<option value='2'>Someapples</option>");

$("#selectBox option:eq(2)").replaceWith("<option value='3'>Somebananas</option>");

 

8. 지정된 index값으로 select 하기

$("#selectBox option:eq(2)").attr("selected", "selected");

 

9. text 값으로 select 하기

$("#selectBox").val("Someoranges").attr("selected", "selected");

 

10. value값으로 select 하기

$("#selectBox").val("2");

 

11. 지정된 인덱스값의 item 삭제

$("#selectBox option:eq(0)").remove();

 

12. 첫번째 item 삭제

$("#selectBox option:first").remove();

 

13. 마지막 item 삭제

$("#selectBox option:last").remove();

 

14. 선택된 옵션의 text 구하기

alert(!$("#selectBox option:selected").text());

 

15. 선택된 옵션의 value 구하기

alert(!$("#selectBox option:selected").val());

 

16. 선택된 옵션 index 구하기

alert(!$("#selectBox option").index($("#selectBox option:selected")));

 

17. SelecBox 아이템 갯수 구하기

alert(!$("#selectBox option").size());

 

18. 선택된 옵션 앞의 아이템 갯수

alert(!$("#selectBox option:selected").prevAl!l().size());

 

19. 선택된 옵션 후의 아이템 갯수

alert(!$("#selectBox option:selected").nextAll().size());

 

20. 특정한 위치의 앞에 옵션 추가하기

$("#selectBox option:eq(0)").after("<option value='4'>Somepears</option>");

 

21. 특정한 위치의 뒤에 옵션 추가하기

$("#selectBox option:eq(3)").before("<option value='5'>Someapricots</option>");

 

22. 값이 변경되었을때 값 가져오기

$("#selectBox").change(function(){

           alert(!$(this).val());

           alert(!$(this).children("option:selected").text());

});



출처: https://kunoo.tistory.com/entry/JQuery-Select-Boxval-선택값-제어

'* Programming > JQuery' 카테고리의 다른 글

문자분할,배열제거,배열을 문자로 join  (0) 2019.11.20
삼항연산자  (0) 2019.11.19
input 체크박스  (0) 2019.10.16
문자열 제거 이벤트  (0) 2018.08.09
날짜(datepicker) 시작일 종료일  (0) 2018.06.15

'* Programming > JavaScript' 카테고리의 다른 글

비밀번호 / 이메일 / 전화번호 / 핸드폰 정규식  (0) 2020.04.14
인쇄하기  (0) 2018.03.08
클로저를 이용한 bean 객체 생성  (0) 2016.10.05
THIS  (0) 2016.10.05
클로져(Closure)  (0) 2016.10.05

Form 태그에 onSubmit="return false;" 추가

 

<form onSubmit="return false;">

</form>

 

+ Recent posts