是否可以在不使用jQuery的情况下从下拉列表中选择项目并使用AngularJS?
我已经使用jQuery实现了它,但我只是想知道它是否可以在AngularJS中使用。
以下是我在jQuery中的表现。
var dropdownlist = $("select").data("kendoDropDownList");
dropdownlist.select(function(dataItem) {
return dataItem.name === $scope.person.name;
});
dropdownlist.toggle();
答案 0 :(得分:0)
您可以在选择选项中使用ng-Change
示例代码是
<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>
$scope.selectingPersion=function(slectedValue)
{
var value=slectedValue.person;// See quick watch for what's the value is returnd here
}
这只是一个密钥,您可以从我的代码
结帐否则从ng-model值看
的结果请结帐$scope.selectedperson.person
值