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

表单验证

时间:2018-11-11 18:24:23      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:head   表单   meta   mit   var   form   text   https   find   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
</head>
<body>
<form id =‘f1‘ action="https://www.baidu.com" method="get">
    <div><input name="n1" type="text"></div>
    <div><input name="n2" type="password"></div>
    <div><input name="n3" type="text"></div>
    <div><input name="n4" type="text"></div>
    <div><input name="n5" type="text"></div>
    <input type="submit" value="提交">
</form>
<script src="jquery1.9.js"></script>
<script>
    $(:submit).click(function () {

        $(#f1).find(input[type="text"],input[type="password"]).each(function () {
            var v=$(this).val();
            console.log(1)
            if(v.length<=0){
                return false;
            }
        });
        console.log("haha");
        return false;
    });
</script>
</body>
</html>

 

    

表单验证

标签:head   表单   meta   mit   var   form   text   https   find   

原文地址:https://www.cnblogs.com/bianzhuo/p/9942850.html

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