我正在尝试通过 jquery 获取元素的尺寸,但运气不佳。
这就是我创建 div 的方式。
var window = document.createElement( 'div' );
window.setAttribute( 'id', 'myWindow' + id );
window.setAttribute( 'data-minwidth', '75' );
window.setAttribute( 'data-minheight', '50' );
window.setAttribute( 'class', 'box_flat' + theme + ' message' );
window.setAttribute( 'style', 'z-index:' + id );
var content = document.createElement( 'div' );
content.setAttribute( 'id', 'myContent' + id )
content.setAttribute( 'class', 'contents' )
window.appendChild( content );
document.body.appendChild( window )
这就是我试图达到它的方式。
var cont = $( element ).closest( ".content" ).find( 'div' )
在这种情况下,元素 = 窗口。
我总是得到一个看起来像选择器列表的对象。.width() 和高度一样返回 null。这里有什么更好的方法?