Html5学习-JQuery mobile--button学习使用

Html5学习-JQuery mobile——button学习使用

参考地址
http://www.lampweb.org/jquerymobile/17/59.html

1. 按钮
jQuery Mobile 中的按钮可通过三种方法创建:
使用 <button> 元素
使用 <input> 元素
使用 data-role="button" 的 <a> 元素

例如
<a class="ui-btn">an</a>

<input type="button" value="按钮">

<a href="#" data-role="button">按钮</a>

  

jQuery Mobile也会自动的转换像表单元素中的submit,reset,button,或image为按钮样式。




你可能感兴趣的:(jquery,UI,html5,mobile,JQM)