我使用“Chrules”在这次讨论中给出了解决方案: 按钮没有HREF,的onclick等
像这样 :
<button id="clickable" >Click Me!!</button>
......
$("#clickable").click(function(){
// Send user to this link
insertRecord(); //SQLite Code
location.href = "game.html";
// location.href = "http://www.takemehere.com"; });
因此,当我使用放在location.href像他推杆它(=“ http://www.takemehere.com ”)的insertRecord()方法被成功完成(该对象被添加到数据库中)
但是当我使用放在location.href =“game.html”; 该game.html页面被打开,但insertRecord()方法不这样做,我试图把game.html但同样的问题的完整路径坚持你有什么想法吗? 感谢ü提前