web-dev-qa-db-ja.com

HTMLでフォントサイズを取得する方法

私はここでテキストのフォントサイズを取得しようとして質問を読んでいました。彼らが答えたのは、測定方法を使用してピクセルサイズを取得することでした。できるようにしたいのは、フォントサイズの値を取得して変更できるようにすることだけです。

例えば:

_var x = document.getElementById("foo").style.fontSize;
document.getElementById("foo").style.fontSize = x + 1;
_

この例は機能しませんが、これら2つは機能します

  1. document.getElementById("foo").style.fontSize = "larger";
  2. document.getElementById("foo").style.fontSize = "smaller";

唯一の問題は、サイズを1回しか変更しないことです。

46
Mark Walsh

要素のstyle.fontSizeを取得するだけでは機能しない場合があります。 font-sizeがスタイルシートで定義されている場合、これは""(空の文字列)を報告します。

window.getComputedStyle を使用する必要があります。

var el = document.getElementById('foo');
var style = window.getComputedStyle(el, null).getPropertyValue('font-size');
var fontSize = parseFloat(style); 
// now you have a proper float for the font size (yes, it can be a float, not just an integer)
el.style.fontSize = (fontSize + 1) + 'px';
127
Paul Armstrong

要素にfont-sizeプロパティがない場合、コードは空の文字列を返します。要素にfont-sizeプロパティを持たせる必要はありません。要素は、親要素からプロパティを継承できます。

この場合、計算されたfont-sizeを見つける必要があります。これを試してください(IEについてはわかりません)

var computedFontSize = window.getComputedStyle(document.getElementById("foo")).fontSize;

console.log(computedFontSize);

変数computeFontSizeは、単位付きのフォントサイズで返されます。単位はpx、em、%です。算術演算を実行して新しい値を割り当てるには、ユニットを削除する必要があります。

8
kiranvj

FontSizeから取得する値は「12px」または「1.5em」のようなものであるため、その文字列に1を追加すると「12px1」または「1.5em1」になります。フォントサイズを取得し、次の方法で操作できます。

var fontSize = parseInt(x);
fontSize = fontSize + 1 + "px";
document.getElementById("foo").style.fontSize = fontSize;
2
MattDiamant

Jqueryを使用している場合、以下が解決策です。

var fontSize = $("#foo").css("fontSize");
fontSize  = parseInt(fontSize) + 1 + "px";
$("#foo").css("fontSize", fontSize );

これがうまくいくことを願っています。

2
Umair Saleem
  1. html要素インラインスタイルがある場合、_.style.fontSize_を取得してfont-size
  2. html要素インラインスタイルがない場合、 Window.getComputedStyle()関数を使用してfont-sizeを取得します!

デモコードはこちら!

_function tureFunc() {
    alert(document.getElementById("fp").style.fontSize);
    console.log(`fontSize = ${document.getElementById("fp").style.fontSize}`);
}
function falseFunc() {
    alert( false ? document.getElementById("fh").style.fontSize : "check the consloe!");
    console.log(`fontSize = ${document.getElementById("fh").style.fontSize}`);
}
function getTheStyle(){
    let elem = document.getElementById("elem-container");
    let fontSize = window.getComputedStyle(elem,null).getPropertyValue("font-size");
    // font-size !=== fontSize
    console.log(`fontSize = ${fontSize}`);
           alert(fontSize);
    document.getElementById("output").innerHTML = fontSize;
}
// getTheStyle();_
_<p id="fp" style="font-size:120%">
    This is a paragraph.
    <mark>inline style : <code>style="font-size:120%"</code></mark>
</p>
<button type="button" onclick="tureFunc()">Return fontSize</button>
<h3 id="fh">
    This is a H3. <mark>browser defualt value</mark>
</h3>
<button type="button" onclick="falseFunc()">Not Return fontSize</button>
<div id="elem-container">
<mark>window.getComputedStyle & .getPropertyValue("font-size");</mark><br/>
<button type="button" onclick="getTheStyle()">Return font-size</button>
</div>
<div id="output"></div>_

参照リンク:

https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle

0
xgqfrms

これを試してみてください、フォントサイズを決定するのに間違いなく役立ちます

var elem = document.createElement('div');
var t=document.createTextNode('M')
elem.appendChild(t);
document.body.appendChild(elem);

var myfontSize = getStyle(elem,"fontSize")
alert(myfontSize)
document.body.removeChild(elem);

function getStyle(elem,prop){
if (elem.currentStyle) {
var res= elem.currentStyle.margin;
} else if (window.getComputedStyle) {
if (window.getComputedStyle.getPropertyValue){
var res= window.getComputedStyle(elem, null).getPropertyValue(prop)}
else{var res =window.getComputedStyle(elem)[prop] };
}
return res;
}

さらに、ゲッターとセッターを使用して、コードのサイズによってフォントサイズが後で変更されたかどうかを判断できます

0
Gaurav