调用函数时打开页面

发布于 2024-11-08 16:15:53 字数 218 浏览 1 评论 0原文

我在 PhoneGap 应用程序中从 W3C Web SQL 数据库中选择记录。我创建一个按钮来调用删除数据库中特定记录的函数。 当记录被删除时,“主页”页面必须自动加载并刷新新项目。我该怎么做?

function DeletedRecordSuccesful() 
{ 
alert("record Deleted.");

//open page "home"
}

I select records from W3C Web SQL Database in my phonegap application. I create a button that call a function that delete the specific record in the db.
When the record is deleted, the page "home" has to be automatically load and refresh with the new items. How can I do this?

function DeletedRecordSuccesful() 
{ 
alert("record Deleted.");

//open page "home"
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那请放手 2024-11-15 16:15:53

您可以使用以下命令更改页面:

window.location =  "home.html"

window.location.href = "home.html"

You can use the followings to change page :

window.location =  "home.html"

or

window.location.href = "home.html"
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文