兩種方法:1、使用shift()刪除第一個元素,語法“數組物件.shift();”,該方法刪除數組第一個元素後會將該元素的值返回。 2、使用splice()刪除第一個元素,splice()可以從指定位置開始刪除指定個數的元素,只需將開始位置設為0,刪除個數設為1即可,語法「陣列物件. splice(0,1);」。
本教學操作環境:windows7系統、jquery3.6.0版本、Dell G3電腦。
jquery刪除陣列中第一個元素有兩種方法:
#使用shift()
使用splice()
方法1:使用shift()刪除第一個元素
shift() 方法用來把數組的第一個元素從其中刪除,並傳回第一個元素的值。
注意: 此方法改變陣列的長度!
<!doctype html> <html> <head> <meta charset="UTF-8"> <script src="./js/jquery-3.6.0.min.js"></script> </head> <body> <script type="text/javascript"> var fruits = ["Banana", "Orange", "Apple", "Mango"]; console.log(fruits); fruits.shift(); console.log(fruits); </script> </body> </html>
方法2:使用splice()刪除第一個元素
splice() 方法用於插入、刪除或替換數組的元素。
刪除語法:
splice(index,1)
第一個參數index是要刪除元素在陣列中的位置,第二個參數是要刪除的數量(因為只需要刪除第一個元素,因此數量為1)。
<!doctype html> <html> <head> <meta charset="UTF-8"> <script src="./js/jquery-3.6.0.min.js"></script> </head> <body> <script type="text/javascript"> var fruits = ["Banana", "Orange", "Apple", "Mango"]; console.log(fruits); fruits.splice(0,1); console.log(fruits); </script> </body> </html>
【推薦學習:jQuery影片教學、web前端影片】
以上是jquery數組怎麼刪除第一個元素的詳細內容。更多資訊請關注PHP中文網其他相關文章!