我有一个jquery插件,我想在页面onload事件上调用它。我试过下面的代码。有人帮我这个。谢谢。
var app = angular.module("myApp", []);
app.controller('MyCtrl', ['$scope', '$http', function ($scope, $http) {
app.element(document).ready(function () {
document.getElementById("#req_date").glDatePicker();
});
$scope.AddCrims = function () {
alert('hi');
}
}]);
答案 0 :(得分:0)
应该是angular
而不是app
:
angular.element(document).ready(function () {
document.getElementById("#req_date").glDatePicker();
});