본문 바로가기
Developer/Javascript & jQuery

[jquery] button, input type

by 순수한소년 2017. 1. 30.
728x90
반응형
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>jQuery UI</title>
<!-- 티스토리 충돌때문에 주석처리 -->
<!-- <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.4/themes/redmond/jquery-ui.min.css" /> -->
</head>
<body>
    <div>
        <button>버튼(Element)</button>
        <a href="http://www.infopub.co.kr">앵커</a>
        <input type="button" value="버튼(Input)" />
        <input type="submit" value="전송" />
        <input id="cb0" type="checkbox" class="one" />
        <label for="cb0">체크</label>
    </div>
    <hr />
    <div class="set">
        <input id="cb1" type="checkbox" name="c" />
        <label for="cb1">체크 1</label>
        <input id="cb2" type="checkbox" name="c" />
        <label for="cb2">체크 2</label>
        <input id="cb3" type="checkbox" name="c" />
        <label for="cb3">체크 3</label>
    </div>
    <hr />
    <div class="set">
        <input id="r1" type="radio" name="r" />
        <label for="r1">라디오 1</label>
        <input id="r2" type="radio" name="r" />
        <label for="r2">라디오 2</label>
        <input id="r3" type="radio" name="r" />
        <label for="r3">라디오 3</label>
    </div>
<!-- 티스토리 충돌때문에 주석처리 -->
<!--    <script src="http://code.jquery.com/jquery-1.11.0.min.js"></script> -->
<!--    <script src="http://code.jquery.com/ui/1.10.4/jquery-ui.min.js"></script> -->
    <script>
        $(function() {
            $('button').button();
            $('a').button();
            $('input[type="button"]').button();
            $('input[type="submit"]').button();
            $('input.one').button();
            $('.set').buttonset();
        });
    </script>
</body>
</html>
cs


jQuery UI
앵커



728x90
반응형