javascript中字串的定義
<script> <BR>//定義字串<BR>//第一種<BR>var str = new Array(); <BR>alert(str) ;//空字元<BR>//第二種<BR>var str2 = new Array("hello"); <BR>alert(str2);//hello <BR>//第三種<BR>/ * <BR>String 物件可用字串文字明確建立。 <BR>用這種方法建立的 String 物件(指以標準字串形式)與用 new 運算子建立的 String 物件處理上不同。 <BR>所有字串文字共享公用的全域字串物件。如果為字串文字新增屬性,則它對所有標準字串物件都是可用的: <BR>*/ <BR>var str3 = "hello"; <BR>alert(str3);//hello <BR> </script>