javascript物件有:JS Array(陣列物件)、JS Boolean(布林物件)、JS Date(日期物件)、JS Math (Math物件)、JS Number(數字物件)、JS String(字串物件)、JS RegExp(正規表示式)、JS Function(函數物件)、 Browser裡面的Window 、Screen等。
方法 | 描述 |
---|---|
contant() | 連接兩個或更多的數組,並傳回結果。 |
join() | 把陣列的所有元素放入一個字串。元素透過指定的分隔符號進行分隔。 |
pop() | 刪除並傳回陣列的最後一個元素 |
在陣列的末尾新增一個或更多元素,並傳回新的長度。 | |
在陣列中顛倒元素的順序。 | |
刪除並傳回數組的第一個元素 | |
從某個已有的陣列傳回選定的元素 | |
#對陣列的元素進行排序 | |
傳回該物件的原始碼。 |
<script type="text/javascript">var a = [1,2,3]; document.write(a.concat(4,5));</script>
1,2,3,4,5
<script type="text/javascript">var arr = new Array(3) arr[0] = "George"arr[1] = "John"arr[2] = "Thomas"document.write(arr.join())</script>
George,John,Thomas
[1, 10, 12, 132, 3, 4, 5, 6, 7, 9] [1, 3, 4, 5, 6, 7, 9, 10, 12, 132] [132, 12, 10, 9, 7, 6, 5, 4, 3, 1] [132, 12, 10, 9, 7, 6, 5, 4, 3, 1]
<script type="text/javascript">var arr = new Array(3) arr[0] = "George"arr[1] = "John"arr[2] = "Thomas"document.write(arr) document.write("<br />") document.write(arr.pop()) document.write("<br />") document.write(arr)</script>
George,John,Thomas Thomas George,John
<script type="text/javascript">var arr = new Array(3) arr[0] = "George"arr[1] = "John"arr[2] = "Thomas"document.write(arr + "<br />") document.write(arr.push("James") + "<br />") document.write(arr)</script>
George,John,Thomas 4 George,John,Thomas,James
以上是JavaScript之本地對象的詳細內容。更多資訊請關注PHP中文網其他相關文章!