Slice(start, end): 不改變原始資料,創建新資料。 截取 var str = “Hi SLICE”; str.slice(); //Hi SLICE ,效果同str.slice(0); str.slice(1, 5); //i SL ,到前一個 ...
確定! 回上一頁