250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | ||||
4 | 5 | 6 | 7 | 8 | 9 | 10 |
11 | 12 | 13 | 14 | 15 | 16 | 17 |
18 | 19 | 20 | 21 | 22 | 23 | 24 |
25 | 26 | 27 | 28 | 29 | 30 | 31 |
Tags
- html5
- CSS
- IOS
- 자바스크립트
- iOS 개발자
- button
- 풀스택
- xcode
- SWIFT
- front-end
- 프론트엔드
- 애니메이션
- MAC
- effect
- react
- php
- jQuery
- 비전공자
- css3
- 개발자
- HTML
- ipad
- 비전공 개발자
- keyframes
- iPhone
- javascript
- 백엔드
- Animation
- hover
- image
Archives
- Today
- Total
비전공자 개발일기
JQuery 17 - datepicker 본문
728x90
SMALL
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DatePicker</title>
<link rel="stylesheet" href="//code.jquery.com/ui/1.13.0/themes/base/jquery-ui.css">
<link rel="stylesheet" href="/resources/demos/style.css">
<script src="https://code.jquery.com/jquery-3.6.0.js"></script>
<script src="https://code.jquery.com/ui/1.13.0/jquery-ui.js"></script>
</head>
<style>
* {text-align: center;}
</style>
<body>
<p>Date: <input type="text" id="datepicker"></p>
</body>
<script>
$( function() {
$( "#datepicker" ).datepicker();
} );
</script>
</html>
728x90
LIST
'JQuery' 카테고리의 다른 글
JQuery - input & button Event (0) | 2022.01.05 |
---|---|
JQuery - sortable (0) | 2021.12.27 |
Serialize - input name에 해당 되는 값들 추출 (0) | 2021.12.18 |
JQuery16 - select option detail value 입력 (0) | 2021.12.16 |
JQuery15 (0) | 2021.12.15 |