1.基礎知識:Helloworld:例 1.1<html><head> <!-- 如果你用notepad建立一個txt之後你再改為html,一定在存時,要存成utf-8或unicode格式,或者你也可以用 myeclipse html designer,這樣你看的文本是有顏色的,如果覺得字體小,可以 ...
1.基礎知識:
Helloworld:
例 1.1
<html>
<head>
<!-- 如果你用notepad建立一個txt之後你再改為html,一定在存時,要存成utf-8或unicode格式,或者你也可以用 myeclipse html designer,這樣你看的文本是有顏色的,如果覺得字體小,可以在myeclipse html designer下麵的視窗里右擊滑鼠,/preferences/general/editor/text editor.註意在texteditor視窗裡面的右邊最下麵,有一行不起眼你的小字,color and font,你可以設置。-->
</head>
<script type="text/javascript">
var a ;
/*before you set value, a' type can not be defined.*/
document.writeln(typeof(a) + "<br>他們");
a = true;
document.writeln(typeof(a) + "<br>");
/*下麵的console.log只有安裝了firebug的firebox不報錯*/
console.log("This is the 1 message 馬克-to-win write in %s", a);
document.writeln(a);
</script>我們
文章轉載自原文:https://blog.csdn.net/qq_44594249/article/details/97655818