如何在一个框中添加2条错误消息?

时间:2016-12-07 19:02:29

标签: javascript html forms twitter-bootstrap pug

我正在尝试使用此插件find

进行一些表单验证

现在我有这样的话: http://1000hz.github.io/bootstrap-validator/

使用此代码:

    .row.form-group
        .col-xs-12.col-sm-6
            label(for="firstName") First Name TEST*
            input(required type="text" id="firstName" data-error="We can't verify your name.")
        .col-xs-12.col-sm-6
            label(for="lastName") Last Name TEST*
            input(required type="text" id="lastName" data-error="We can't verify your last name.")

        .help-block.with-errors.full    

但根据设计师的说法,我需要像这样:

enter image description here

我正在尝试使用此代码:

SaveQueue()

但我只收到最后一条错误消息:

enter image description here

有什么建议吗?

0 个答案:

没有答案