angularjs中下拉框select option默认值

Posted 每天都要进步一点点

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了angularjs中下拉框select option默认值相关的知识,希望对你有一定的参考价值。

1.问题说明:

option ng-repeat多空白项

2.解决方案:

html:

<ion-view hide-nav-bar="true">
  <ion-content>
    <div class="list card">
      <div>
        <label class="item item-input item-select">
          <div class="input-label">
            <span>安排类型</span>
          </div>
          <select
            ng-change="selectAction()"
            ng-model="selectedType.value"
            ng-init="selectedType.value = \'\'"
          >
            <option value="">-- 请选择 --</option>
            <option
              ng-repeat="item in workArrangeTypes"
              value="{{item.value}}"
            >{{item.name}}</option>
          </select>
        </label>
      </div>
      <div class="item">
        <button style="width: 100%;" class="button button-positive" ng-click="submitWork()">提交安排工作</button>
      </div>
     </div>
  </ion-content>
</ion-view>

js:

/************************************** 区域管理 *************************************/
.controller(\'RegionalManageCtrl\', [\'$scope\',function($scope) {
  /*** 测试 ***/
  $scope.selectedType = {value: 1}; // 默认值
  $scope.workArrangeTypes = [
    {name: \'社区服务\', value: 1},
    {name: \'教育学习\', value: 2},
    {name: \'思想汇报\', value: 3},
    {name: \'电话汇报\', value: 4},
    {name: \'家庭访问\', value: 5}
  ]; // 工作安排类型

  // 每次option改变时自动调用该方法
  $scope.selectAction = function() {
    console.log($scope.selectedType.value); // 5
  }

  /**
   * 提交工作安排
   */
  $scope.submitWork = function() {
    console.log($scope.selectedType); // {value: 5}
  }
}])

3.效果图

以上是关于angularjs中下拉框select option默认值的主要内容,如果未能解决你的问题,请参考以下文章

如何重写angularJs的下拉框,做到带查找筛选功能的select下拉框

怎么在动态添加select下拉框中 选择一个默认的option

angularjs中下拉框select option默认值

经验angularjs 实现带查找筛选功能的select下拉框

点击select下拉框获取option的属性值

AngularJS Select(选择框)