किसी svg
तत्व के आयाम प्राप्त करने का उचित तरीका क्या है ?
http://jsfiddle.net/langdonx/Xkv3X/
Chrome 28:
style x
client 300x100
offset 300x100
IE 10:
stylex
client300x100
offsetundefinedxundefined
फ़ायरफ़ॉक्स २३:
"style" "x"
"client" "0x0"
"offset" "undefinedxundefined"
चौड़ाई और ऊँचाई गुण हैं svg1
, लेकिन .width.baseVal.value
केवल तभी सेट किया जाता है जब मैं तत्व पर चौड़ाई और ऊँचाई विशेषताएँ सेट करता हूँ।
फिडल इस तरह दिखता है:
एचटीएमएल
<svg id="svg1" xmlns="http://www.w3.org/2000/svg" version="1.1">
<circle cx="50" cy="50" r="40" stroke="black" stroke-width="1" fill="red" />
<circle cx="150" cy="50" r="40" stroke="black" stroke-width="1" fill="green" />
<circle cx="250" cy="50" r="40" stroke="black" stroke-width="1" fill="blue" />
</svg>
जे एस
var svg1 = document.getElementById('svg1');
console.log(svg1);
console.log('style', svg1.style.width + 'x' + svg1.style.height);
console.log('client', svg1.clientWidth + 'x' + svg1.clientHeight);
console.log('offset', svg1.offsetWidth + 'x' + svg1.offsetHeight);
सीएसएस
#svg1 {
width: 300px;
height: 100px;
}
svg
कि खींचा गया है, उसके बावजूद भी कब्जा कर रहा है? jsfiddle.net/Xkv3X/4