我想从JavaScript调用我的AngularJs函数
的JavaScript
function loadData1() {
var dropdown = document.getElementById("dropdown");
var a = dropdown.options[dropdown.selectedIndex].value;
if (a=="organisationUnits") {
getorganisationUnits();
}
}
AngularJs
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
//angular.element('#myCtrl').scope().getorganisationUnits();
$scope.getorganisationUnits = function () {
window.alert("Show data");
}
});
HTML
<div ng-app="myApp" ng-controller="myCtrl" id="content">
<select id="dropdown">
<option value="selected"> Please Select Option</option>
<option value="organisationUnits"> Organisation Units</option>
</select>
<input type="button" value="Go" id="getall_go" onclick="loadData1()"></input>
</div>
答案 0 :(得分:3)
这是如何以角度方式进行的
var app = angular.module("myApp", []);
app.controller("myCtrl", function($scope) {
$scope.load = function() {
console.log("Dropdown value : " + $scope.drop);
if ($scope.drop === "organisationUnits")
console.log("Show data");
}
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="myApp" ng-controller="myCtrl" id="content">
<select id="dropdown" ng-model="drop">
<option value="selected">Please Select Option</option>
<option value="organisationUnits">Organisation Units</option>
</select>
<input type="button" value="Go" id="getall_go" ng-click="load()" />
</div>