如果我有:
<div id="abc" data-ng-show="abc.visible">xxx</div>
在javascript中:
$scope.abc.visible = true;
var modal = document.getElementById('abc');
var modal_width = parseInt(modal.width, 10)
var modal_height = parseInt(modal.height, 10)
var abc = $('#abc').width();
在将可见设置为true后,我现在如何直接获得div的宽度?我尝试了上述方法,但我似乎无法使用。
请注意,modal.width 和 modal.height 在这里都显示为未定义