編輯: 問題似乎是字體大小沒有明確設置,並且僅由css類設置。所以style.fontSize總是返回一個空字符串如何獲取網頁中元素的文字字體大小
如果還有其他方法返回字體大小?
var allMainFrameElems = parent.main.document.getElementsByTagName('*');
for (i=0; i < allMainFrameElems.length; i++){
if(allMainFrameElems[i].style.fontSize != null){
alert(llMainFrameElems[i].style.fontSize);
}
}
你想知道你的尺寸是什麼尺寸:px,pt,ex,em,cm,mm,in,pc或相對於頁面上的其他東西? –