我有驗證2個字段是國家代碼和實際的手機號碼。我附上了截圖。當給出正確的國家代碼並且當時給出無效的移動號碼時,用於國家代碼和交叉字形的正確的嘀嗒字符相互重疊。我需要通過使用css或js刪除國家代碼的glyphicon。任何幫助將不勝感激。Bootstrap驗證:2個glyphicons重疊
0
A
回答
0
我找到了答案。我通過使用jQuery來完成它。
我的實際HTML是如下,
<div class="input-group">
<div class="input-group-addon">+</div>
<input type="tel" maxlength="3" class="form-control pull-left" id="CountryCode" name="CountryCode" placeholder="Code">
<input data-bv-field="Mobile" type="text" id="Mobile" name="Mobile" class="form-control">
</div>
引導正確和錯誤的,因爲下面的HTML下面創建glyphicons,以下
<i class="form-control-feedback bv-no-label bv-icon-input-group glyphicon glyphicon-ok" data-bv-icon-for="CountryCode" style=""></i>
<i class="form-control-feedback bv-no-label bv-icon-input-group glyphicon glyphicon-ok" data-bv-icon-for="Mobile" style=""></i>
所以我加入了一行代碼以刪除正確的,國家代碼字段的錯誤字形,
$("#CountryCode").parent().next().removeClass('glyphicon-ok glyphicon-remove');
0
如果你正在使用jQuery:
假設你有
<div class="container">
<div class="form">
form content...
</div>
</div>
你會打電話:
$('.container form .glyphicon').each(function(i){ // your target input id or class should be placed between 'form' and '.glyphicon' eg: $('.container form input[name=state_code] .glyphicon')
if (i!=0) $(this).remove();
});
這樣你擺脫額外的Xes出現在你不需要的時候。
相關問題
- 1. Twitter bootstrap - Glyphicons
- 2. glyphicons和bootstrap 4
- 3. Rails Bootstrap glyphicons
- 4. Twitter Bootstrap Glyphicons
- 5. Animating Bootstrap glyphicons
- 6. jQuery驗證錯誤重疊
- 7. Symfony2和Twitter Bootstrap glyphicons
- 8. cakePHP 3.0和bootstrap glyphicons
- 9. Twitter Bootstrap 3 Glyphicons error
- 10. php中的bootstrap glyphicons
- 11. Bootstrap中的GLYPHICONS 2.3.2
- 12. Bootstrap模式重疊
- 13. Bootstrap重疊部分
- 14. jQuery驗證錯誤消息放大glyphicons
- 15. Bootstrap驗證器?
- 16. JavaScript Bootstrap驗證
- 17. Bootstrap驗證
- 18. Twitter Bootstrap Heroku中的Glyphicons
- 19. Font Awesome vs Glyphicons in Twitter Bootstrap
- 20. Firefox字體問題 - Bootstrap Glyphicons
- 21. twitter-bootstrap glyphicons bug與火狐
- 22. Rails的form_for和bootstrap glyphicons
- 23. Rails 4:Bootstrap-sass和glyphicons
- 24. Bootstrap Glyphicons - 定位問題
- 25. Bootstrap不包括任何glyphicons
- 26. Angular bootstrap-ui,glyphicons not showing
- 27. Bootstrap中缺少glyphicons 2.3.2
- 28. Bootstrap Glyphicons如何工作?
- 29. 使2個圖像重疊
- 30. 避免2個textview重疊
添加產生問題的代碼 – neophyte
@neophyte我在下面添加了代碼。我通過使用jQuery來處理它。 –