coxosclassic Posted June 11, 2012 at 02:34 PM Report #461969 Posted June 11, 2012 at 02:34 PM (edited) Hey hey! Boas a todos, Desculpem a pergunta básica, mas alguem me pode dar uma ajuda em aceder ao valor de height de uma div? 😛 eis o meu problema: js: content = document.getElementById("content"); alert(content.innerHeight); // retorna undefined html: <div id=container> <div id="content">ALGUM TEXTO MUITO LONGO...</div> </div> Tenho a div 'content' com texto dinamico e precisava de saber a sua altura para poder fazer umas animacoes com div 'container'. Alguma dica? cumps, cc Edited June 11, 2012 at 02:36 PM by coxosclassic Cumps, cc
pikax Posted June 11, 2012 at 02:38 PM Report #461973 Posted June 11, 2012 at 02:38 PM http://www.quirksmode.org/dom/getstyles.html acho que seria alert(content.style.width); Por muito mais que que estude só aprendo uma coisa, que ainda tenho muita coisa para aprender. A beleza de um código está em decompor problemas complexos em pequenos blocos simples. "learn how to do it manually first, then use the wizzy tool to save time." "Kill the baby, don't be afraid of starting all over again. Fail soon, learn fast."
coxosclassic Posted June 11, 2012 at 02:55 PM Author Report #461978 Posted June 11, 2012 at 02:55 PM (edited) hmm... tambem ja tinha tentado esse metodo, mas nao me retorna valor nenhum... (?) entretanto o css para essa div é: #content { width:600px; height:auto; /*o conteudo (texto) é dinamico*/ } obg, cc Edited June 11, 2012 at 02:56 PM by coxosclassic Cumps, cc
pikax Posted June 11, 2012 at 02:56 PM Report #461985 Posted June 11, 2012 at 02:56 PM eu mandei o link mesmo por isso 😉 obg pelo link CRLF 👍 cumps, cc Nao e' "CRLF" e' pikax, senao o teu nick seria "Try-Catch User " 😉 Por muito mais que que estude só aprendo uma coisa, que ainda tenho muita coisa para aprender. A beleza de um código está em decompor problemas complexos em pequenos blocos simples. "learn how to do it manually first, then use the wizzy tool to save time." "Kill the baby, don't be afraid of starting all over again. Fail soon, learn fast."
coxosclassic Posted June 11, 2012 at 02:59 PM Author Report #461988 Posted June 11, 2012 at 02:59 PM (edited) argh! tou aqui com dificuldades em responder ao topico (um bug no forum?) A solucao para este problema (está no link): alert(content.offsetHeight); Nao e' "CRLF" e' pikax, senao o teu nick seria "Try-Catch User " 😉 Sorry! lol! 👍 Edited June 11, 2012 at 03:00 PM by coxosclassic Cumps, cc
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now