ตัวอย่าง
แสดงข้อความในที่มีขนาดใหญ่ font-size นี้:
var str = "Hello World!";
var result = str.fontsize(7);
ลองตัวเอง» เพิ่มเติม "Try it Yourself" ตัวอย่างด้านล่าง
ความหมายและการใช้งาน
fontsize() เป็นวิธีการที่ไม่ได้มาตรฐานและอาจไม่ทำงานตามที่คาดไว้ในเบราว์เซอร์
fontsize() วิธีการที่ใช้ในการแสดงสตริงในขนาดที่ระบุ
วิธีการนี้จะส่งกลับสตริงฝังตัวอยู่ใน <font> แท็กเช่นนี้
<font size = "ขนาด"> สตริง </ font>
<font> แท็กไม่สนับสนุนใน HTML5 ใช้ CSS แทน
สนับสนุนเบราว์เซอร์
วิธี | |||||
---|---|---|---|---|---|
fontsize() | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
วากยสัมพันธ์
ค่าพารามิเตอร์ พารามิเตอร์ ลักษณะ size จำเป็นต้องใช้ จำนวนเต็มระหว่าง 1 และ 7 ที่ระบุขนาดตัวอักษร
รายละเอียดทางเทคนิค
กลับค่า: สตริงที่ฝังตัวอยู่ใน <font> แท็ก JavaScript เวอร์ชัน: 1.0
ตัวอย่างอื่น ๆ
ตัวอย่าง
การสาธิตวิธีการที่เกี่ยวข้อง:
var txt = "Hello World!";
document.write("The original string: " +
txt);
document.write("<p>Big: " + txt.big() + "</p>");
document.write("<p>Small:
" + txt.small() + "</p>");
document.write("<p>Bold: " + txt.bold() +
"</p>");
document.write("<p>Italic: " + txt.italics() + "</p>");
document.write("<p>Fixed: " + txt.fixed() + "</p>");
document.write("<p>Strike:
" + txt.strike() + "</p>");
document.write("<p>Fontcolor: " +
txt.fontcolor("green") + "</p>");
document.write("<p>Fontsize: " +
txt.fontsize(6) + "</p>");
document.write("<p>Subscript: " + txt.sub() +
"</p>");
document.write("<p>Superscript: " + txt.sup() + "</p>");
document.write("<p>Link: " + txt.link("http://www.w3ii.com") + "</p>");
document.write("<p>Blink: " + txt.blink() + " (works only in Opera)</p>");
ลองตัวเอง»
<JavaScript String อ้างอิง