删除列表中的记录 - Android

时间:2013-01-07 09:02:10

标签: javascript android html5 cordova local-storage

点击列表中每条记录的按钮,我有一个列表,我将其删除。

我在Anroaid上使用这个HTML5通过PhoneGap包装,在计算机上删除记录,在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存储中删除,

列表的显示仍显示已删除的项目。

1 个答案:

答案 0 :(得分:0)

问题解决了,android不会知道数据集,因此卡住了..