本文将介绍如何使用 jquery扩展现有表单验证功能,使其不仅适用于文本输入框,还能应用于日期选择器和下拉菜单等非文本输入控件。通过修改选择器,可以确保所有类型的输入字段在验证失败时都能正确显示错误状态,从而提升用户体验和数据质量。
在前端开发中,表单验证是至关重要的一环。它能确保用户输入的数据符合预期格式,从而提高数据质量并改善用户体验。通常,我们使用 jQuery 来简化 JavaScript 操作,进行表单验证。然而,当表单中包含非文本输入框(如日期选择器 <input type=”date”> 或下拉菜单 <select>)时,原有的验证逻辑可能无法正确处理这些类型的输入。
问题:仅验证文本输入框
在提供的代码示例中,验证逻辑仅针对 input[type=”text”] 类型的输入框。这意味着,如果用户在日期选择器或下拉菜单中未选择任何值,验证逻辑将不会检测到这个错误,也不会将这些输入框标记为错误状态。
解决方案:扩展选择器
要解决这个问题,我们需要修改 jQuery 选择器,使其包含所有需要验证的输入类型。具体来说,可以将选择器从 input[type=”text”] 扩展为 input[type=”text”], input[type=”date”], select。
修改后的代码如下:
// Add row on add button click $(document).on("click", ".add", function(){ var empty = false; var input = $(this).parents("tr").find('input[type="text"], input[type="date"], select'); input.each(function(){ if(!$(this).val()){ $(this).addClass("Error"); empty = true; } else{ $(this).removeClass("error"); } }); $(this).parents("tr").find(".error").first().focus(); if(!empty){ input.each(function(){ $(this).parent("td").html($(this).val()); }); $(this).parents("tr").find(".add, .edit").toggle(); $(".add-new").removeAttr("disabled"); } });
代码解释
- $(this).parents(“tr”).find(‘input[type=”text”], input[type=”date”], select’): 这行代码使用 jQuery 选择器找到当前行 (tr) 中所有类型为 text 的 input 元素,所有类型为 date 的 input 元素,以及所有的 select 元素。
- input.each(function(){ … }): 这行代码遍历所有找到的输入元素,并对每个元素执行一个函数。
- if(!$(this).val()){ … }: 这行代码检查当前输入元素的值是否为空。如果为空,则执行 if 语句块中的代码。
- $(this).addClass(“error”): 这行代码将 error 类添加到当前输入元素。这个类通常用于改变输入框的样式,例如将边框颜色设置为红色,以指示这是一个错误。
完整示例
以下是一个包含日期选择器的完整示例:
<html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>bootstrap Table with Add and Delete Row Feature</title> <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Roboto|Varela+Round|Open+Sans"> <link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css"> <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.JS"></script> <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script> <style> body { color: #404E67; background: #F5F7FA; font-family: 'Open Sans', sans-serif; } .table-wrapper { width: 700px; margin: 30px auto; background: #fff; padding: 20px; box-shadow: 0 1px 1px rgba(0,0,0,.05); } .table-title { padding-bottom: 10px; margin: 0 0 10px; } .table-title h2 { margin: 6px 0 0; font-size: 22px; } .table-title .add-new { float: right; height: 30px; font-weight: bold; font-size: 12px; text-shadow: none; min-width: 100px; border-radius: 50px; line-height: 13px; } .table-title .add-new i { margin-right: 4px; } table.table { table-layout: fixed; } table.table tr th, table.table tr td { border-color: #e9e9e9; } table.table th i { font-size: 13px; margin: 0 5px; cursor: pointer; } table.table th:last-child { width: 100px; } table.table td a { cursor: pointer; display: inline-block; margin: 0 5px; min-width: 24px; } table.table td a.add { color: #27C46B; } table.table td a.edit { color: #FFC107; } table.table td a.delete { color: #E34724; } table.table td i { font-size: 19px; } table.table td a.add i { font-size: 24px; margin-right: -1px; position: relative; top: 3px; } table.table .form-control { height: 32px; line-height: 32px; box-shadow: none; border-radius: 2px; } table.table .form-control.error { border-color: #f50000; } table.table td .add { display: none; } </style> <script> $(document).ready(function(){ $('[data-toggle="tooltip"]').tooltip(); var actions = $("table td:last-child").html(); // Append table with add row form on add new button click $(".add-new").click(function(){ $(this).attr("disabled", "disabled"); var index = $("table tbody tr:last-child").index(); var row = '<tr>' + '<td><input type="text" class="form-control" name="name" id="name"></td>' + '<td><input type="text" class="form-control" name="department" id="department"></td>' + '<td><input type="text" class="form-control" name="phone" id="phone"></td>' + '<td><input type="date" class="form-control" name="date" id="date"></td>' + '<td>' + actions + '</td>' + '</tr>'; $("table").append(row); $("table tbody tr").eq(index + 1).find(".add, .edit").toggle(); $('[data-toggle="tooltip"]').tooltip(); }); // Add row on add button click $(document).on("click", ".add", function(){ var empty = false; var input = $(this).parents("tr").find('input[type="text"], input[type="date"]'); input.each(function(){ if(!$(this).val()){ $(this).addClass("error"); empty = true; } else{ $(this).removeClass("error"); } }); $(this).parents("tr").find(".error").first().focus(); if(!empty){ input.each(function(){ $(this).parent("td").html($(this).val()); }); $(this).parents("tr").find(".add, .edit").toggle(); $(".add-new").removeAttr("disabled"); } }); // Edit row on edit button click $(document).on("click", ".edit", function(){ $(this).parents("tr").find("td:not(:last-child)").each(function(){ $(this).html('<input type="text" class="form-control" value="' + $(this).text() + '">'); }); $(this).parents("tr").find(".add, .edit").toggle(); $(".add-new").attr("disabled", "disabled"); }); // Delete row on delete button click $(document).on("click", ".delete", function(){ $(this).parents("tr").remove(); $(".add-new").removeAttr("disabled"); }); }); </script> </head> <body> <div class="container"> <div class="table-wrapper"> <div class="table-title"> <div class="row"> <div class="col-sm-8"><h2>Employee <b>Details</b></h2></div> <div class="col-sm-4"> <button type="button" class="btn btn-info add-new"><i class="fa fa-plus"></i> Add New</button> </div> </div> </div> <table class="table table-bordered"> <thead> <tr> <th>Name</th> <th>Department</th> <th>Phone</th> <th>Date</th> <th>Actions</th> </tr> </thead> <tbody> <tr> <td>John Doe</td> <td>Administration</td> <td>(171) 555-2222</td> <td>2024-01-01</td> <td> <a class="add" title="Add" data-toggle="tooltip"><i class="material-icons"></i></a> <a class="edit" title="Edit" data-toggle="tooltip"><i class="material-icons"></i></a> <a class="delete" title="Delete" data-toggle="tooltip"><i class="material-icons"></i></a> </td> </tr> <tr> <td>Peter Parker</td> <td>Customer Service</td> <td>(313) 555-5735</td> <td>2024-01-02</td> <td> <a class="add" title="Add" data-toggle="tooltip"><i class="material-icons"></i></a> <a class="edit" title="Edit" data-toggle="tooltip"><i class="material-icons"></i></a> <a class="delete" title="Delete" data-toggle="tooltip"><i class="material-icons"></i></a> </td> </tr> <tr> <td>Fran Wilson</td> <td>Human Resources</td> <td>(503) 555-9931</td> <td>2024-01-03</td> <td> <a class="add" title="Add" data-toggle="tooltip"><i class="material-icons"></i></a> <a class="edit" title="Edit" data-toggle="tooltip"><i class="material-icons"></i></a> <a class="delete" title="Delete" data-toggle="tooltip"><i class="material-icons"></i></a> </td> </tr> </tbody> </table> </div> </div> </body> </html>
注意事项
- CSS 样式: 确保你的 CSS 样式中定义了 .error 类的样式,以便在验证失败时能够清晰地显示错误状态。例如,可以将输入框的边框颜色设置为红色。
- 其他输入类型: 如果你的表单中包含其他类型的输入框(例如 textarea 或 checkbox),请根据需要将它们添加到选择器中。
- 更复杂的验证: 对于更复杂的验证需求(例如,验证电子邮件地址或电话号码的格式),你可能需要使用正则表达式或其他验证方法。
总结
通过修改 jQuery 选择器,我们可以轻松地扩展表单验证功能,使其适用于各种类型的输入框。这可以提高数据质量并改善用户体验。在实际开发中,请根据具体的表单结构和验证需求,灵活地调整选择器和验证逻辑。
相关标签:
评论(已关闭)
评论已关闭