将js变量值转换为Web Sql db

时间:2014-08-24 11:42:47

标签: javascript sqlite web-sql

我找不到将JS变量值(文本)传递给websql DB的解决方案.. 我一直在寻找的是一些PHP解决方案,我不想使用它。

function store(){
    var x = document.getElementById('inp1').value;
    names.push(x);
    L10();
    $('#tt').text(names);
}


function Insert(){
    db.transaction(function(t){
    t.executeSql('INSERT INTO Followers(fNAME) VALUES (?)',[x]);//->here is my problem :) x variable
    });
}
$('#inp2').click(function(){

    store();

    Insert();
});

1 个答案:

答案 0 :(得分:0)

发现我的错误,我使用私有变量x而不是全局x .. duh!

x = document.getElementById('inp1').value;