引导输入标签应用所需的验证

Posted

技术标签:

【中文标题】引导输入标签应用所需的验证【英文标题】:Bootstrap input tags apply required validation 【发布时间】:2020-04-06 23:42:53 【问题描述】:

我正在使用引导标签输入https://bootstrap-tagsinput.github.io/bootstrap-tagsinput/examples/ 并成功实施。我只想将其设为必填字段,以便每个用户提交带有技术标签的表单。

<div class="col-lg-6">
 <label class="">Primary Skills (Note: Add comma separated) <span class="text-danger">*</span></label>
 <input class="form-control" type="text" id="primaryskill" name="seeker_primary_skills" required>
 <b class="tooltip tooltip-top-right">This is a required</b>
</div>

这是这个的截图。

【问题讨论】:

【参考方案1】:

检查表单提交的返回

<form onsubmit="return checktag()">

javascript/Jquery 代码

function checktag()
   if($("#primaryskill").val() == '')
      alert("Tags Required"); //Here you can simple alert or change input css with 
      border red with msg with the help of jquery
      return false;
   else
        return true; 
   

【讨论】:

已应用引导验证程序,因此不要使用这种类型的事件。

以上是关于引导输入标签应用所需的验证的主要内容,如果未能解决你的问题,请参考以下文章

jquery 验证插件:验证隐藏输入,跳过所需的输入文本

Win10 驱动装不上,提示:Windows 无法验证此设备所需的驱动程序的数字签名。该值受安全引导策略保护,无法进行修改或删除。

覆盖 Primefaces 输入组件所需的验证消息

启用/禁用使用 JQuery 禁用输入的 ASP.NET Web 表单所需的验证器?

无法获取表单以验证所需的选择输入

Mongoose 所需的验证器失败值未定义