ตัวอย่าง
แสดงข้อความเป็นข้อความตัวพิมพ์ดีด:
var str = "Hello World!";
var result = str.fixed();
ลองตัวเอง» เพิ่มเติม "ลองตัวเอง" ตัวอย่างด้านล่าง
ความหมายและการใช้งาน
fixed() เป็นวิธีการที่ไม่ได้มาตรฐานและอาจไม่ทำงานตามที่คาดไว้ในเบราว์เซอร์
fixed() วิธีการที่ใช้ในการแสดงสตริงเป็นข้อความโทรพิมพ์
วิธีการนี้จะส่งกลับสตริงฝังตัวอยู่ใน <tt> แท็กเช่นนี้
<TT> สตริง </ TT>
<tt> แท็กไม่สนับสนุนใน HTML5 ใช้ CSS แทน
สนับสนุนเบราว์เซอร์
วิธี | |||||
---|---|---|---|---|---|
fixed() | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
วากยสัมพันธ์
string.fixed()
พารามิเตอร์
ไม่มี. |
รายละเอียดทางเทคนิค
กลับค่า: | สตริงที่ฝังตัวอยู่ใน <tt> แท็ก |
---|---|
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 อ้างอิง