我有兩個字段,用戶名和密碼形式的NG-模型輸入文字頂部的頁面,無論是場均綁定與ngModel滾動當輸入與angularjs
<form method="POST" name="loginForm" novalidate class="loginForm">
<input ng-required="true" ng-model="loginRequest.UserName" class="textControls userCtrl" type="text" name="UserName" id="id_username" />
<input ng-required="true" ng-model="loginRequest.Password" type="password" name="Password" id="id_password"/>
<button type="submit" id="submitLogin" class="blueBtn">Ingresar</button>
</form>
我的問題是第一次打字時在移動設備的每個字段上的兩個字母,頁面滾動到頂部在iPhone失去了領域的焦點。當將ng-model移除到輸入字段時,此行爲會消失。
如果您包含足夠的代碼來重現您的問題,這將更容易診斷。 – buzzsaw
@buzzsaw我不能在小提琴上重現這個錯誤對不起 – xzegga