当单击列表中每条记录的按钮时,我有一个列表,我将其删除。
我通过PhoneGap包装器在Anroaid上使用这个HTML5,在计算机上记录被删除,在Android上没有!可能是什么原因?
这是我的代码:
我的列表:
<ul id="MyList" data-role="listview" data-divider-theme="b" data-inset="true">
</ul>
我用这个函数填充列表:
function FillBookMarkListByStation() {
var ul = $("#MyList");
for (var i = 0; i < Local.length; i++) {
var newLI = document.createElement("LI");
ul.appendChild(newLI);
newLI.innerHTML = '<a href="xxx.html" onclick="x();" > <p>...</p>' +
'<a id="btnClear' + i + '" data-role="button" data-icon="delete" data-theme="b"></a>
</a>';
$("#btnClear" + i).click(function () { Clear(ul, newLI); });
}
$('ul').listview('refresh');
}
功能明确:
function Clear(List, Delete) {
//Remove from the list
List.removeChild(Delete);
//Remove from the local storage
for (var i = 0; i < Local.length; i++) {
//Checking is variable for check the data in the item
if (Local[i].Checking == Delete.dataset.checking) {
if (Local.length == 1)
Local= [];
else {
for (var j = i; j < Local.length - 1; j++) {
Local[i] = Local[i] + 1;
}
Local.length--;
}
Local["loc"] = JSON.stringify(Local);
}
}
}
在电脑上工作正常,
在 Android 上是从屏幕上删除,而不是从 loacl 存储中删除,
在列表的演示文稿中仍然显示已删除的项目。