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

<form> 表单提交 return 阻止内容为空事件

时间:2018-07-14 19:28:36      阅读:123      评论:0      收藏:0      [点我收藏+]

标签:turn   htm   ext   title   find   back   lang   document   this   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        .active{
            color:red;
        }
    </style>
</head>
<body>
    <form action="s4.html" method="post" id="f1">
        <div>
            <input type="text">
        </div>
        <div>
            <input type="text">
        </div>
        <div>
            <input type="text">
        </div>
        <div>
            <input type="text">
        </div>
        <div>
            <input type="submit" value="提交">
        </div>
    </form>
<script src="../jquery-2.12.4.js"></script>
<script>
    $(#f1).find(:submit).click(function () {
        var tag = true;
        $(.active).remove();
        $(#f1).find(:text).each(function () {
            if($(this).val().length<=0){
                tag = false;
                span = document.createElement(span);
                span.innerText = 必填;
                $(span).addClass(active);
                $(this).after(span);
            }
        });
        return tag;
    })



</script>

</body>
</html>

 

<form> 表单提交 return 阻止内容为空事件

标签:turn   htm   ext   title   find   back   lang   document   this   

原文地址:https://www.cnblogs.com/my-love-is-python/p/9310682.html

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