JavaScript document.write( ) 基本語法
document.write(' 這裡寫你要呈現的文字 ');
要呈現的文字內容放在 document.write 小括號中,用單引號('')或雙引號("")將字串包起來,這樣瀏覽器會自動把這些文字當成字串來呈現,如果你要呈現的文字內容是變數,則不能夠直接放在引號中,必須用逗號(,)或加號(+)來連接變數字串,當變數較多時,建議一律使用加號(+)來串接變數字串,避免瀏覽器判斷失誤而造成的顯示出錯。JavaScript document.write 範例一、單純的顯示字串
<script type="text/javascript">
document.write("這是測試網頁內容");
</script>
以上範例呈現結果如document.write("這是測試網頁內容");
</script>
這是測試網頁內容
JavaScript document.write 範例二、加入 HTML 標籤以及變數字串<script type="text/javascript">
var TestString='Have a good time.';
document.write('Welcome to Wibibi.<br>'+TestString);
</script>
以上範例呈現結果如var TestString='Have a good time.';
document.write('Welcome to Wibibi.<br>'+TestString);
</script>
Welcome to Wibibi.
Have a good time.
範例二中,document.write 的工作內容包含將單純的字串輸出,以及輸出變數字串,在前段的字串中,使用了 HTML 的換行標籤 <br>,接著用加符號(+)串起變數字串 TestString,讓前段字串與後段字串一起輸出,且輸出結果共分為兩行,特別注意變數字串不可以放在引號內,單引號或雙引號都不可以,否則會變成單純的文字字串,不會輸出變數內容。Have a good time.
延伸閱讀