-
개요
js기반 Lib로 이해
JQuery Ui
- 코드 Ex
<script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> <script> $( function() { $( ".widget input[type=submit], .widget a, .widget button" ).button(); $( "button, input, a" ).click( function( event ) { event.preventDefault(); alert("확인을 누를 때까지 대기"); } ); } ); </script> </head> <body> <div class="widget"> <h1>Widget Buttons</h1> <button>A button element</button> <input type="submit" value="A submit button"> <a href="#">An anchor</a> </body> </html>
- Button
https://infos.tistory.com/2768
'Html Css JavaScript' 카테고리의 다른 글
Html - 글자 형태 태그 (0) 2020.07.30 Html - head에 허용되는 태그 (0) 2020.07.30 Html5 기본 (0) 2020.07.30 Html5 새로운 기능 (0) 2020.07.30 Javascript - 텍스트 얻기 innerText (0) 2018.12.22 Javascript - 클립보드 복사 (0) 2018.12.22 Javascript jQuery 기본 정의 (0) 2018.09.28 javascript(Html script) 기본구조 (0) 2018.09.28