<!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());
});
</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-17 select option selected (0) | 2018.01.11 |
---|---|
1-16 입력 양식 필터 input type=text (0) | 2018.01.11 |
1-14 동위 선택자 (0) | 2018.01.11 |
1-11 특정 class 속성을 가지는 태그 선택자 (0) | 2018.01.11 |
1-9 prompt 아이디 선택자 (0) | 2018.01.11 |