検索

ホームページ  >  に質問  >  本文

angular.js - Angularjs select如何默认选中其中一个option

html代码为,如果ng-model的值在InPageSel里有的话,界面上是选中的。但是如果没有,界面上选择的是空白栏,界面下拉内容有很多,希望能做到默认选中第一个。

<select ng-model="auth_policy.p_info.high_action.action_annex.page" ng-options="en as en for en in InPageSel" style="width:150px;"></select>

js代码,select数据是从后台get过来然后放在InPageSel数组里的

$scope.InPageSel = [];
angular.forEach(data_select.script_pagelist,function(v,k){
this.push(v.page_name);
},$scope.InPageSel);
習慣沉默習慣沉默2744日前621

全員に返信(2)返信します

  • phpcn_u1582

    phpcn_u15822017-05-15 16:55:32

    たくさんの方法がありますが、私が個人的に最も安定していると思う方法は次のとおりです。 リーリー

    返事
    0
  • 世界只因有你

    世界只因有你2017-05-15 16:55:32

    取得後のコンテンツに存在する値を auth_policy.p_info.high_action.action_annex.page に与えることを検討できます

    返事
    0
  • キャンセル返事