jQuery從入門到精通 ~ EX2-6 [ JS String物件變數的成員介紹( 大號字體:big(),粗體:bold(),設定文字顏色:fontcolor() ) ]
JS String物件變數的成員介紹( 大號字體:big(),粗體:bold(),設定文字顏色:fontcolor() )
程式內容:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml”>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=gb2312″ />
<title>使用String对象的方法处理字符串</title>
<script language=”javascript”>
var str = new String(“最特别的存在”); // 定义原始字符串
document.write(“原始字符串:”+str+”<br/><br/>”); // 显示原始字符串
document.write(“大号字体显示的字符串:”+str.big()+”<br/><br/>”); // 大号字体显示字符串
document.write(“粗体显示的字符串:”+str.bold()+”<br/><br/>”); // 粗体显示字符串
document.write(“指定颜色显示的字符串:”+str.fontcolor(“red”)); // 设置字符串为红色
</script>
</head>
<body>
</body>
</html>
|