我想通了。 您可以看到代碼here。
function px_to_em(px_value, container) {
////////////////////////////////
// Detect Contianer Font Size //
////////////////////////////////
//Prepend a span tag to the container for testing
$(container).prepend("<span id='wraping_span_to_test'></span>");
//Set the span to height 1em and then save the pixel height to the container_ft_sz variable
container_ft_size = $("#wraping_span_to_test").css({
"font-family": "inherit",
"font-size": "inherit",
"font-style": "inherit",
"font-variant": "inherit",
"font-weight": "inherit",
"line-height": "inherit",
"margin": "0 !important",
"padding": "0 !important",
"border": "0 !important",
"outline": "0 !important",
"background-color": "aqua",
"height": "1em",
"width": " 1em",
"display": "block"
}).height();
//Remove the testing span
$("#wraping_span_to_test").remove();
//Use values to convert to ems
var round_to = 1000;
return Math.round((px_value/container_ft_size) * round_to)/round_to;
}
這應該讓你找到由像素測量與jQuery測量通過調用一個簡單的函數&它們轉換成電磁測量。
我們確實需要看到一些代碼來回答。我認爲有CSS類做的工作和jQuery增加類的HTML,但是,沒有看到代碼,我不知道這是否繼續下去。 –
有太多的代碼可以顯示; &沒有,這將無法正常工作。我正在動態創建元素和樣式,並且我正在檢測諸如某個東西的寬度並將其設置爲var並設置另一個元素的位置的度量,例如= var。我希望這可以幫助澄清? –
是否有任何理由,你必須動態創建類,你不能讓他們在一個CSS文件,只是改變jQuery中的dom元素的類? –