개발

[javascript] 자바스크립트 모음

지승준 2014. 9. 16. 16:27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//input type text 비활성시
style="background-color:#f1f1f1;" readonly="readonly"
 
//javascript 값 가져오기
document.regiForm.emailaddr.value;
 
//selected된 값 가져오기
$( "#emailaddr option:selected" ).val();
 
//selected된 텍스트 가져오기
$( "#emailaddr option:selected" ).text();
 
//readonly 변경
$("#emailaddr").attr("readonly"false);
 
//css 수정
$("#emailaddr2").css("background-color""");
cs


'개발' 카테고리의 다른 글

[java] 스프링 예외처리  (0) 2014.09.18
[javascript] 슬라이드  (0) 2014.09.17
[php] 현재 url가져오기  (0) 2014.09.16
[javascript] 이미지 좌우 이동  (0) 2014.08.30
[javascript] 내용값 가져오기  (0) 2014.08.28