admin管理员组文章数量:1345106
i am tring to get the width/height values of an element in dom tree (HTML page) and i am using below method:
var event = e || window.event;
var target = event.target || event.srcElement;
i am getting id and class information by using
var classinfo = target.attributes.getNamedItem("class").nodeValue;
var idinfo = target.attributes.getNamedItem("id").nodeValue;
As a result, is there any way to get width and height values of a node element by using getNamedItem method / or any other you can advise.
NOTE: I need to get real width and height not css or inline because maybe width is 60% in css but it is rendered as 100px...
Thanks in advance.
i am tring to get the width/height values of an element in dom tree (HTML page) and i am using below method:
var event = e || window.event;
var target = event.target || event.srcElement;
i am getting id and class information by using
var classinfo = target.attributes.getNamedItem("class").nodeValue;
var idinfo = target.attributes.getNamedItem("id").nodeValue;
As a result, is there any way to get width and height values of a node element by using getNamedItem method / or any other you can advise.
NOTE: I need to get real width and height not css or inline because maybe width is 60% in css but it is rendered as 100px...
Thanks in advance. Share Improve this question asked Mar 11, 2011 at 0:48 AlperAlper 1,1033 gold badges22 silver badges40 bronze badges
1 Answer
Reset to default 9element.offsetWidth, element.offsetHeight: overall size of the containing box in pixels
element.clientHeight, element.clientWidth: content dimensions
These are read only properties, and always return the current rendered values.
(You need to assign a style property in the element or in a stylesheet to set most elements onscreen height and width.)
本文标签: javascriptGetting actual widhheight values of element via attributesgetNamedItemStack Overflow
版权声明:本文标题:javascript - Getting actual widhheight values of element via attributes.getNamedItem - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743794142a2540115.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论