angular.js - 页面加载的时候ng-show会显示出来一瞬间,怎么避免
ringa_lee
ringa_lee 2017-05-15 17:11:36
0
9
693

代码如下,页面刚加载的时候ng-show所在的p会冒出来一瞬间,怎么避免呢?
<label class="col-sm-2 control-label">用户名</label>

            <p class="col-sm-10">
                <input type="text" autocomplete="off" name="username" ng-model="data.username" ng-minlength="5" ng-maxlength="10" ng-required="true" class="form-control"  placeholder="请输入用户名">
                <p ng-show="myform.username.$error.minlength" class="alert alert-danger help-block">
                    用户名不能小于5位
                </p>
                <p ng-show="myform.username.$error.maxlength" class="alert alert-danger help-block">
                    用户名不能大于10位
                </p>
            </p>
ringa_lee
ringa_lee

ringa_lee

reply all(9)
PHPzhong
  • Use ng-if to judge or

  • plus ng-cloak

曾经蜡笔没有小新

ng-show, ng-hide are css display and hiding. Try changing the duration of this animation effect to the minimum

小葫芦

Is this form validation? I think it’s better if you try using ng-if

我想大声告诉你

Add ng-cloak to element

Ty80

ng-cloak

小葫芦

Use ng-if, show just simply changes the display: none; ng-if removes the entire DOM, so there won’t be the situation you mentioned

小葫芦

Use ng-if

Peter_Zhu

Add the ng-hide class during initialization or set display: none, and it will be hidden by default

刘奇

http://www.cnblogs.com/whitew...

Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!