?? 16.9.htm
字號:
<html>
<head><title>字符串連接輸出</title></head>
<body>
<h1>字符串連接輸出</h1><p>
<script type="text/javascript">
var str = "";
str += "This is a very long string.";
str += "It has entities like © as well as <b>XHTML</b> tags.";
str += "We can even include <pre> various special characters like";
str += "\t \t tabs or even newlines \n \n in our string</pre>";
str += "but remember the rules of XHTML may override \t\t\n our efforts";
document.write(str);
</script>
</body>
</html>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -