เพิ่มเติม "Try it Yourself" ตัวอย่างด้านล่าง
ความหมายและการใช้งาน
strike() วิธีการที่ใช้ในการแสดงสตริงที่จะหลงออก
วิธีการนี้จะส่งกลับสตริงฝังตัวอยู่ใน <strike> แท็กเช่นนี้
<ตี> สตริง </ ตี>
<strike> แท็กไม่สนับสนุนใน HTML5 ใช้ CSS แทน
สนับสนุนเบราว์เซอร์
วิธี | |||||
---|---|---|---|---|---|
strike() | ใช่ | ใช่ | ใช่ | ใช่ | ใช่ |
วากยสัมพันธ์
พารามิเตอร์ ไม่มี.
รายละเอียดทางเทคนิค
กลับค่า: สตริงที่ฝังตัวอยู่ใน <strike> แท็ก 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 อ้างอิง