是否可以在不使用jQuery的情况下在下拉列表中选择选项?

时间:2015-03-09 07:59:26

标签: javascript angularjs kendo-ui

是否可以在不使用jQuery的情况下从下拉列表中选择项目并使用AngularJS?

我已经使用jQuery实现了它,但我只是想知道它是否可以在AngularJS中使用。

以下是我在jQuery中的表现。

var dropdownlist = $("select").data("kendoDropDownList");
dropdownlist.select(function(dataItem) {
     return dataItem.name === $scope.person.name;
});
dropdownlist.toggle();

1 个答案:

答案 0 :(得分:0)

您可以在选择选项中使用ng-Change

示例代码是

Html代码

<div class="col-sm-6 form-group">               
            <select class="form-control input-lg" ng-model="selectedperson" 
             required **ng-change="selectingPersion(this)"** ng-options="i.person for i in persons">
            </select>

        </div>

Js代码

$scope.selectingPersion=function(slectedValue)
    {
     var value=slectedValue.person;// See quick watch for what's the value is returnd here
    }

这只是一个密钥,您可以从我的代码

结帐

否则从ng-model值看

的结果

请结帐$scope.selectedperson.person