2013.08.07
jQueryUIをはじめる方は必見、超簡単サンプル集~その3~
3つめはSpinnerです。
3.Spinnerのサンプルスクリプト
あまりSpinnerというと馴染みがないですが、上下矢印で値を選択できるウィジェットのことです。
<html lang="ja"> <head> <meta charset="utf-8" /> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> <script> $(function() { var spinner = $( "#spinner" ).spinner(); $( "#disable" ).click(function() { if ( spinner.spinner( "option", "disabled" ) ) { spinner.spinner( "enable" ); } else { spinner.spinner( "disable" ); } }); $( "#destroy" ).click(function() { if ( spinner.data( "ui-spinner" ) ) { spinner.spinner( "destroy" ); } else { spinner.spinner(); } }); $( "#getvalue" ).click(function() { alert( spinner.spinner( "value" ) ); }); $( "#setvalue" ).click(function() { spinner.spinner( "value", 5 ); }); $( "button" ).button(); }); </script> </head> <body> <p><input id="spinner" name="value" /></p> <button id="disable">Toggle disable/enable</button> <button id="destroy">Toggle widget</button> <button id="getvalue">Get value</button> <button id="setvalue">Set value to 5</button> </body> </html>
→各ボタンの動きは次の通り。
「Toogle disable/enable」ボタンで入力の可/不可切替、
「Toggle widget」ボタンでトグル表示のON/OFF切替、
「Get Value」ボタンで入力値をポップアップ表示、
「Set Value to 5」ボタンで入力値を5にセット
4つめはTabs。
4.Tabsのサンプルスクリプト
<html lang="ja"> <head> <meta charset="utf-8" /> <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css" /> <script src="http://code.jquery.com/jquery-1.9.1.js"></script> <script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script> <script>$(function(){$("#tabs").tabs();});</script> </head> <body> <div id="tabs"> <ul> <li><a href="#tabs-1">Tab1</a></li> <li><a href="#tabs-2">Tab2</a></li> <li><a href="#tabs-3">Tab3</a></li> </ul> <div id="tabs-1">tabs1中身</div> <div id="tabs-2">tabs2中身</div> <div id="tabs-3">tabs3中身</div> </div> </body> </html>
→タブ表示が簡単に作成できます。中身の文章は自由に増やしたりしてみてください。