使用load
方法,我加載內容到現有的div。當內容變長時,我想增加現有div的高度以匹配加載內容。如何獲取容器高度後,我加載了html
我怎麼能找到所加載內容的高度,在情況下,如果是包裹在一個div稱爲pageContent
任何幫助嗎?
var container = $('existingDiv')
this.container.load("Doc/chapter1/index.html", function(element){
console.log($(element).innerHeight())//getting 0
container.height(element.height())//?
});