0

我想使用 angularJS 中选项的自定义值重置 select 中的选定选项:

HTML

<select id="" name="" class="form-control" ng-model="mymodel">
    <option value="1000">All</option>
    <option value="-1">Not Done Yet</option>
    <option value="0">Already Done</option>
    <option value="1">Other option1</option>
    <option value="2">Other option1</option>
</select>

选择选项是:<span>{{mymodel}}</span>

<button class="btn btn-danger glyphicon glyphicon-refresh"
    data-toggle="tooltip" title="Reset"
    ng-click="clearSearch();">Reset</button>

JS

$scope.clearSearch = function () {
    $scope.mymodel = 1000;
}
4

2 回答 2

2

如果您使用的是 AngularJS 1.4,则需要将值设置为字符串而不是数字。

$scope.clearSearch = function () {
    //Use a string
    $scope.mymodel = '1000';
    //Not a number
    //$scope.mymodel = 1000;
}
于 2016-03-23T18:43:05.117 回答
0

我做了这个工作JSFiddle。它似乎工作正常。

请注意,我初始化了$scope.mymodel.

JS

var myApp = angular.module('myApp',[]);

function MyCtrl($scope) {
    $scope.mymodel = 1000;
    $scope.clearSearch = function () {
       $scope.mymodel = 1000;
    }
}
于 2016-03-23T17:11:38.650 回答