码迷,mamicode.com
首页 > 其他好文 > 详细

input元素required属性无效

时间:2017-02-05 15:03:11      阅读:326      评论:0      收藏:0      [点我收藏+]

标签:targe   span   function   无效   val   question   color   style   input   

解决方法出自 http://stackoverflow.com/questions/23261301/required-attribute-not-work-in-safari-browser

 

Safari不支持input的required属性,可用js解决

 1 $(document).ready(function(){
 2     $("form").submit(function(e) {
 3         var ref = $(this).find("[required=required]");
 4         alert(‘ref‘);
 5         $(ref).each(function(){
 6             if ( $(this).val() == ‘‘ )
 7             {
 8                 alert("Required field should not be blank.");
 9                 $(this).focus();
10                 e.preventDefault();
11                 return false;
12             }
13         });  return true;
14     });
15 });

 

本文原创,转载请注明出处:http://www.cnblogs.com/lawn-tiger/p/6346726.html

input元素required属性无效

标签:targe   span   function   无效   val   question   color   style   input   

原文地址:http://www.cnblogs.com/lawn-tiger/p/6346726.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!