jQuery Mobile - 控制组文本输入
描述
您可以使用 controlgroup-textinput 类指定允许用户输入数据的文本输入。
示例
下面的示例描述了在 jQuery Mobile 框架中使用 controlgroup textinputs。
<!DOCTYPE html> <html> <head> <title>Controlgroup Textinputs</title> <meta name = "viewport" content = "width = device-width, initial-scale = 1"> <link rel = "stylesheet" href = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.css"> <script src = "https://code.jquery.com/jquery-1.11.3.min.js"></script> <script src = "https://code.jquery.com/mobile/1.4.5/jquery.mobile-1.4.5.min.js"></script> </head> <body> <h2>Controlgroup Textinputs</h2> <label for = "search-control-group">Search Here</label> <div data-role = "controlgroup" data-type = "horizontal"> <input type = "text" id = "search-control-group" data-wrapper-class = "controlgroup-textinput ui-btn" /><br><br> <button>Send</button> <button>Reset</button> </div> </body> </html>
输出
让我们执行以下步骤,看看上面的代码是如何工作的 −
将上述 html 代码保存为服务器根文件夹中的 jqm_controlgroup_textinputs.html 文件。
将此 HTML 文件打开为 http://localhost/jqm_controlgroup_textinputs.html,将显示以下输出。