1
In this plunk 모달 높이를 표시하는 경고 팝업창이있는 각도 UI 모달이 있습니다. 대신 빈 변수를 표시합니다. 오류가 어디 있습니까?프로그래밍 방식으로 각도 UI 모달 높이 결정
HTML
<div the-modal></div>
자바 스크립트
var app = angular.module("app", ['ui.bootstrap']);
app.controller("ctl", function($scope, $compile) {});
app.directive("theModal", function($uibModal, $timeout) {
return {
restrict: "AE",
scope: true,
link: function(scope, element, attrs, ctrl, transclude) {
scope.instance = $uibModal.open({
animation: false,
scope: scope,
template: 'Some Text',
appendTo: element
});
$timeout(function(){
alert("Modal height is: " + element.css("height"));
},500);
}
}
});
'element.css'는 요소에 CSS 속성을 설정하는 데 사용되며 – Zooly
이되지 않으므로 높이를 어떻게 얻습니까? – ps0604
다음을 시도하십시오. https://stackoverflow.com/questions/24673418/angularjs-get-element-attributes-values – Danish