jQuery Mobile - 表单输入
描述
<input> 标签是一个允许用户输入数据的控件。 存在不同类型的输入,即文本、搜索、电子邮件、日期、复选框、单选框等。
示例
以下示例演示了在 jQuery Mobile 中使用表单输入。
<!DOCTYPE html> <html> <head> <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> <div data-role = "page"> <div data-role = "header"> <h2>Form Inputs</h2> <input type = "search" name = "src"> </div> <div data-role = "main" class = "ui-content"> <form method = "post" action = "jquery_mobile/demo1.php"> <label for = "fname">First Name</label> <input type = "text" name = "fname"> <label for = "email">Email Address</label> <input type = "email" name = "email"> <label for = "date">Birth Date</label> <input type = "date" name = "date"> <label for = "file">Upload File</label> <input type = "file" name = "file"> Select Car <fieldset data-role = "controlgroup" name = "checkbox"> <input type = "checkbox" name = "checkbox" id = "checkbox"> <label for = "checkbox">BMW</label> <input type = "checkbox" name = "checkbox" id = "checkbox1"> <label for = "checkbox1">Audi</label> <input type = "checkbox" name = "checkbox" id = "checkbox2"> <label for = "checkbox2">Skoda</label> </fieldset> Gender <fieldset data-role = "controlgroup"> <input type = "radio" name = "radio" id = "radio"> <label for = "radio">Male</label> <input type = "radio" name = "radio" id = "radio1"> <label for = "radio1">Female</label> </fieldset> <label for = "slider">Range</label> <input type = "range" name = "slider" id = "slider" value = "20" min = "0" max = "100" data-highlight = "true"> <input type = "submit" value = "Submit" data-inline = "true"> </form> </div> </div> </body> </html>
输出
让我们执行以下步骤,看看上面的代码是如何工作的 −
将上述 html 代码保存为服务器根文件夹中的 form_inputs.html 文件。
将此 HTML 文件打开为 http://localhost/form_inputs.html,将显示以下输出。