jquery ui slider使用 jquery ui 滑动条使用
jquery ui slider: 拖动处理选择一个数值。
操作方法
- 01
<!doctype html> <html> <head> <meta charset="utf-8"> <title>jquery ui slider使用 jquery ui 滑动条使用</title> <link rel="stylesheet" href="http://code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css"> <script src="http://code.jquery.com/jquery-1.10.2.js"></script> <script src="http://code.jquery.com/ui/1.11.0/jquery-ui.js"></script> <link rel="stylesheet" href="http://jqueryui.com/resources/demos/style.css"> <script> $(function() { $( "#slider" ).slider(); }); </script> </head> <body> jquery ui slider使用 jquery ui 滑动条使用</br> <div id="slider"></div> </body> </html>
赞 (0)