events.html 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1">
  6. <title>jQuery Mobile Docs - Checkboxes</title>
  7. <link rel="stylesheet" href="../../../jquery.mobile-1.0.1.min.css" />
  8. <link rel="stylesheet" href="../../_assets/css/jqm-docs.css"/>
  9. <script src="../../../jquery.js"></script>
  10. <script src="../../../experiments/themeswitcher/jquery.mobile.themeswitcher.js"></script>
  11. <script src="../../_assets/js/jqm-docs.js"></script>
  12. <script src="../../../jquery.mobile-1.0.1.min.js"></script>
  13. </head>
  14. <body>
  15. <div data-role="page" class="type-interior">
  16. <div data-role="header" data-theme="f">
  17. <h1>Checkboxes</h1>
  18. <a href="../../../" data-icon="home" data-iconpos="notext" data-direction="reverse" class="ui-btn-right jqm-home">Home</a>
  19. </div><!-- /header -->
  20. <div data-role="content">
  21. <div class="content-primary">
  22. <form action="#" method="get">
  23. <h2>Checkboxes</h2>
  24. <ul data-role="controlgroup" data-type="horizontal" class="localnav">
  25. <li><a href="index.html" data-role="button" data-transition="fade">Basics</a></li>
  26. <li><a href="options.html" data-role="button" data-transition="fade">Options</a></li>
  27. <li><a href="methods.html" data-role="button" data-transition="fade">Methods</a></li>
  28. <li><a href="events.html" data-role="button" data-transition="fade" class="ui-btn-active">Events</a></li>
  29. </ul>
  30. <p>Bind events directly to the <code>input</code> element. Use jQuery Mobile's <a href="../../api/events.html">virtual events</a>, or bind standard JavaScript events, like change, focus, blur, etc.:</p>
  31. <pre><code>
  32. $("input[type='checkbox']").bind( "change", function(event, ui) {
  33. ...
  34. });
  35. </code></pre>
  36. <p>The checkbox plugin has the following custom events:</p>
  37. <dl>
  38. <dt><code>create</code> triggered when a checkbox is created</dt>
  39. <dd>
  40. <pre><code>
  41. $("input[type='checkbox']").checkboxradio({
  42. create: function(event, ui) { ... }
  43. });
  44. </code></pre>
  45. </dd>
  46. </dl>
  47. </form>
  48. </div><!--/content-primary -->
  49. <div class="content-secondary">
  50. <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d">
  51. <h3>More in this section</h3>
  52. <ul data-role="listview" data-theme="c" data-dividertheme="d">
  53. <li data-role="list-divider">Form elements</li>
  54. <li><a href="../docs-forms.html">Form basics</a></li>
  55. <li><a href="../forms-all.html">Form element gallery</a></li>
  56. <li><a href="../textinputs/index.html">Text inputs</a></li>
  57. <li><a href="../search/">Search input</a></li>
  58. <li><a href="../slider/">Slider</a></li>
  59. <li><a href="../switch/">Flip toggle switch</a></li>
  60. <li><a href="../radiobuttons/">Radio buttons</a></li>
  61. <li data-theme="a"><a href="index.html">Checkboxes</a></li>
  62. <li><a href="../selects/">Select menus</a></li>
  63. <li><a href="../forms-themes.html">Theming forms</a></li>
  64. <li><a href="../forms-all-native.html">Native form elements</a></li>
  65. <li><a href="../forms-sample.html">Submitting forms</a></li>
  66. </ul>
  67. </div>
  68. </div>
  69. </div><!-- /content -->
  70. <div data-role="footer" class="footer-docs" data-theme="c">
  71. <p>&copy; 2011-2012 The jQuery Project</p>
  72. </div>
  73. </div><!-- /page -->
  74. </body>
  75. </html>