Html5 websql如何在没有循环的情况下将xml插入本地db表

时间:2012-04-15 09:46:28

标签: javascript jquery html5

我有一个XML变量,我从Web服务器获取,我想使用jquery / javascript将其插入本地db表而不循环(循环非常慢......),

我现在用于插入的代码是:

   $(xx).find("Customers").each(function () {
         var $this = $(this),
             CustID = $this.find("CustID").text(),
             CustName = $this.find("CustName").text(),
             City = $this.find("City").text(),
             PhoneNum = $this.find("PhoneNum").text()
         // guid = $this.find("guid").text(),
         //  postid = $this.find("postid").text(),
         //  url = $this.find("enclosure").attr('url');
         i++;
         db.transaction(function (tx) {
             tx.executeSql('INSERT INTO Customers (CustID, CustName, City, PhoneNum) VALUES (?,?,?,?)', [CustID, CustName, City, PhoneNum]);
         });
     });

XX是一个xml变量。

有没有人有这样的例子?

谢谢,

0 个答案:

没有答案