buttons-methods.html 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  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 - Button methods</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>Button basics</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>Button basics</h2>
  24. <ul data-role="controlgroup" data-type="horizontal" class="localnav">
  25. <li><a href="buttons-types.html" data-role="button" data-transition="fade">Basics</a></li>
  26. <li><a href="buttons-options.html" data-role="button" data-transition="fade">Options</a></li>
  27. <li><a href="buttons-methods.html" data-role="button" data-transition="fade" class="ui-btn-active">Methods</a></li>
  28. <li><a href="buttons-events.html" data-role="button" data-transition="fade">Events</a></li>
  29. </ul>
  30. <p>The following methods apply only to <strong>form buttons</strong>. Link-based buttons do not have any associated methods.</p>
  31. <dl>
  32. <dt><code>enable</code> enable a disabled form button</dt>
  33. <dd>
  34. <pre><code>
  35. $('[type='submit']').button('enable');
  36. </code></pre>
  37. </dd>
  38. <dt><code>disable</code> disable a form button</dt>
  39. <dd>
  40. <pre><code>
  41. $('[type='submit']').button('disable');
  42. </code></pre>
  43. </dd>
  44. <dt><code>refresh</code> update the form button</dt>
  45. <dd>
  46. <p>If you manipulate a form button via JavaScript, you must call the refresh method on it to update the visual styling.</p>
  47. <pre><code>
  48. $('[type='submit']').button('refresh');
  49. </code></pre>
  50. </dd>
  51. </dl>
  52. </form>
  53. </div><!--/content-primary -->
  54. <div class="content-secondary">
  55. <div data-role="collapsible" data-collapsed="true" data-theme="b" data-content-theme="d">
  56. <h3>More in this section</h3>
  57. <ul data-role="listview" data-theme="c" data-dividertheme="d">
  58. <li data-role="list-divider">Buttons</li>
  59. <li data-theme="a"><a href="buttons-types.html">Button basics</a></li>
  60. <li><a href="buttons-icons.html">Button icons</a></li>
  61. <li><a href="buttons-inline.html">Inline buttons</a></li>
  62. <li><a href="buttons-grouped.html">Grouped buttons</a></li>
  63. <li><a href="buttons-themes.html">Theming buttons</a></li>
  64. </ul>
  65. </div>
  66. </div>
  67. </div><!-- /content -->
  68. <div data-role="footer" class="footer-docs" data-theme="c">
  69. <p>&copy; 2011-2012 The jQuery Project</p>
  70. </div>
  71. </div><!-- /page -->
  72. </body>
  73. </html>