表单验证validation插件

来源:1-2 如何开始及举例

慕后端3081372

2016-07-28 14:53

就是表单验证validation插件这节课,怎么让提示改变位置啊?我看老师的代码表单提示提示有的在右边,有的在下面提示,怎么做到的

写回答 关注

2回答

  • Jayefader
    2016-07-28 23:14:01
    已采纳

    错误提示默认是出现在输入框的右侧,要让它出现在输入框的下面,最简便的方法就是设置<fildset>的宽度为input框的宽度,然后代码提示自动会出现在输入框的下方

    慕后端308...

    非常感谢!

    2016-07-29 10:54:33

    共 2 条回复 >

  • 慕后端3081372
    2016-07-29 10:56:42

    body {

        font-size: 36px;

        line-height: 1.6;

    }


    p {

        margin: 10px 0;

    }


    label {

        display: inline-block;

        min-width: 140px;

    }


    label.error {

        margin-left: 10px;

        color: red;

    }


    input, button {

        font-size: 36px;

        line-height: 35px;

        border: 1px solid #999;

        min-width: 180px;

    }


    input.error {

        border: 1px solid red;

    }


    input[type=submit], button {

        margin-top: 20px;

        font-size: 36px;

        padding: 10px 0;

    }


jQuery插件——Validation Plugin

validation让客户端表单验证变容易,缩短用户等待时间

65871 学习 · 216 问题

查看课程

相似问题