?? 3-4 字符串對象常用方法使用示例.htm
字號:
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=GB2312" />
<title>3-4 字符串對象常用方法使用示例</title>
</head>
<body style="overflow:auto; padding:0px; margin:0px;">
<div style="font-size:14px; font-weight:bold; color:white; font-family:Arial, 宋體; background-color:#6090DA; padding:4px 10px;">
<script>
document.write("big的效果".big());
document.write("<br>bold的效果".bold());
document.write("<br>fontsize=5的效果".fontsize("5"));
document.write("<br>A的Unicode編碼是"+"A".charCodeAt(0));
document.write("<br>Unicode編碼為70的字符是"+String.fromCharCode(70));
document.write("<br>Test toLowerCase".toLowerCase());
document.write("<br>Test toUpperCase".toUpperCase());
</script>
</div>
</body>
</html>
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -