selectbox 선택값 변경시 값 구하기
$("#selectbox id").change(function () {
var str = "";
$("select option:selected").each(function (idx, item) {
str += $(this).text() + " ";
});
$("div").text(str);
})
'Programming > jQuery' 카테고리의 다른 글
[jQuery] 숫자, 영문만 입력받기 (0) | 2014.08.14 |
---|---|
[jQuery] 배열에 포함되어있는지 검사하기 (0) | 2014.08.14 |
[jQuery] Ajax 전송 (0) | 2014.08.14 |
[jQuery] HTTP Body로 Ajax JSON POST (0) | 2014.08.14 |
[jQuery] input box 기본문자처리 (0) | 2014.08.14 |