我在 jQuery 中使用 .data() 函数来存储数组,如下所示:
var myArray = {};
myArray[0] = {};
myArray[0][0] = "test00";
myArray[0][1] = "test01";
myArray[1] = {};
myArray[1][0] = "test10";
myArray[1][1] = "test11";
$('#datastorage').data("testname". myArray);
我只想从“testname”中删除一项(myArray[0])并保留其余的。
以下不起作用:
$('#datastorage').removeData("testname").removeData(0);
我相信 jQuery 以普通对象的形式存储了数组(测试结果为$.isPlainObject()
真)我现在正在尝试使用该函数.not()
来删除元素......