我有一個函數,它使用緩存元素(el)更改字體大小2 divs。當函數執行時,我需要確定字體不是太小或太大,取決於它是哪個div(tagCommon
或tagLatin
)。那麼如何在函數中確定哪個元素通過el
傳遞給它?jQuery緩存元素
我想我可能已經在考慮這個或者做錯了,它有點像我黑客它在......並且通常當它覺得有什麼不對勁的時候。
var cb = $('#tagCommon');
var lb = $('#tagLatin');
changeFontSize(cb,1,'up');
function changeFontSize(el,amount,UporDown){
var size = parseFloat($(el).css("font-size").replace(/px/, ""));
// do some stuff here
// ????????
if(el == $('#tagCommon')) //check font size and alert if too small
if(el == $('#tagLatin')) //check font size and alert if too small
}
謝謝你的時間。
託德