Bootstrap和Angularjs配合自制弹框的实例代码
2017-02-06
18
指令directive("bsPopup", function ($parse) {return {require: "ngModel",restrict: "A",link: function (scope, elem, attrs, ctrl) {scope.$watch(function () {return $parse(ctrl.$modelValue)(scope);}, function (newValue) {if (newValue ==...