<html> <body> <script type="text/javascript"> var txt="RuanChen欢迎你!" document.write("<p>放大:" + txt.big() + "</p>") document.write("<p>缩小:" + txt.small() + "</p>") document.write("<p>加粗:" + txt.bold() + "</p>") document.write("<p>倾斜:" + txt.italics() + "</p>") document.write("<p>闪烁:" + txt.blink() + "(不支持IE)</p>") document.write("<p>填充:" + txt.fixed() + "</p>") document.write("<p>删除:" + txt.strike() + "</p>") document.write("<p>颜色:" + txt.fontcolor("Red") + "</p>") document.write("<p>大小:" + txt.fontsize(16) + "</p>") document.write("<p>小写:" + txt.toLowerCase() + "</p>") document.write("<p>大写:" + txt.toUpperCase() + "</p>") document.write("<p>下标:" + txt.sub() + "</p>") document.write("<p>上标:" + txt.sup() + "</p>") document.write("<p>链接:" + txt.link("http://www.RuanChen.com") + "</p>") </script> </body> </html>
编辑上面的文字,按下“查看结果”,效果会显示在右边 Create by 软晨网(RuanChen.com)