JavaScriptで文字を太字にするサンプルです。
サンプル
例)ボタンを押すごとにid="target"要素の文字の太さを切り替える
1 2 3 4 5 6 7 8 |
function changeFontWeight(idname){ var obj = document.getElementById(idname); if(obj.style.fontWeight == "bold"){ obj.style.fontWeight = "normal"; }else{ obj.style.fontWeight = "bold"; } } |
1 2 3 4 5 6 7 8 9 10 11 12 |
<!DOCTYPE html> <html lang="ja"> <head> <meta charset="utf-8"> <title>サンプル</title> <script src="sample.js"></script> </head> <body> <p id="target">あいうえお</p> <input type="button" value="ボタン" onclick="changeFontWeight('target');" /> </body> </html> |
実行サンプル
ボタンを押すと、太字/普通が切り替わります。
あいうえお
解説
fontWeightには以下の値を指定できます。
値 | 意味 |
---|---|
normal | 普通 |
bold | 太字 |