ch7-4.htm
来自「名字是《JavaScript从入门到精通》。但是其实是JavaScript的一些」· HTM 代码 · 共 41 行
HTM
41 行
<!--=======================================-->
<!-- 范例程序 CH7_4.HTML -->
<!--=======================================-->
<HTML>
<HEAD>
<TITLE>文字变化函数</TITLE>
<SCRIPT LANGUAGE="JavaScript">
str="这是粗体文字"
document.write(str.bold())
document.write("<BR>")
str="这是斜体文字"
document.write(str.italics())
document.write("<BR>")
str="此行文字会闪烁"
document.write(str.blink())
document.write("<BR>")
str="此行文字已被删除"
document.write(str.strike())
document.write("<BR>")
str="文字"
str1="下标"
str2="上标"
document.write(str)
document.write(str1.sub())
document.write(str)
document.write("<BR>")
document.write(str)
document.write(str2.sup())
document.write(str)
document.write("<BR>")
</SCRIPT>
</HEAD>
<BODY BackGround="bg.jpg">
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?