<!DOCTYPE html><html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<script src ="../js/jquery-3.2.1.js"></script>
</head>
<script>
$(function(){
$('input[type="text"]').val('Hello jQuery..!!!');
alert ($('input[type="text"]').val());
$('input[type="text"]').css('color', 'red');
$('input[type="password"]').css('color', 'green');
$('input[type="file"]').css('background', 'pink');
/* $('input:text').val('Hello jQuery..!!!');
$('input:text').val('color','red');
$('input:password').val('color','green');
$('input:file').val('background','pink'); */
});
</script>
<body>
<input type ="text" value="저요?"> <br>
<input type ="password" > <br>
<input type ="radio" > <br>
<input type ="checkbox" > <br>
<input type ="file" > <br>
</body>
</html>
' sundries' 카테고리의 다른 글
1-18 위치 필터 선택자 odd, even (0) | 2018.01.11 |
---|---|
1-17 select option selected (0) | 2018.01.11 |
1-15 입력, 양식 필터 / 속성 선택자 input type=text (0) | 2018.01.11 |
1-14 동위 선택자 (0) | 2018.01.11 |
1-11 특정 class 속성을 가지는 태그 선택자 (0) | 2018.01.11 |