gpt4 book ai didi

javascript - var notification = 新通知

转载 作者:行者123 更新时间:2023-12-03 10:18:11 24 4
gpt4 key购买 nike

所以我试图弄清楚这段 JavaScript 代码。我想做的事情是使用查询来显示数据库中的通知数量。假设我的数据库中有 5 条通知,是否可以向此代码添加查询,以便它会显示类似以下内容:你好,你有 5 条看不见的消息?我现在已经搜索了几个小时的垃圾箱,这让我发疯。

提前致谢

<html>
<head>
<script language="javascript">
function notifyMe() {
// Let's check if the browser supports notifications
if (!("Notification" in window)) {
alert("This browser does not support desktop notification");
}

// Let's check if the user is okay to get some notification
else if (Notification.permission === "granted") {
// If it's okay let's create a notification
var notification = new Notification("Hi there!");
}

// Otherwise, we need to ask the user for permission
else if (Notification.permission !== 'denied') {
Notification.requestPermission(function (permission) {
// If the user is okay, let's create a notification
if (permission === "granted") {
var notification = new Notification("Hi there!");
}
});
}

// At last, if the user already denied any notification, and you
// want to be respectful there is no need to bother them any more.
}
</script>
<title>TODO supply a title</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
</head>
<body>
<div><button onclick="notifyMe()">Meldingen ophalen</button></div>
</body>
</html>

最佳答案

要访问数据库,您需要 PHP。

如果你想在网页上执行 PHP 而不重新加载它,你必须使用“xmlhttprequest”,正如 @Grimbode 所说。

这是一种通过 Javascript 从 PHP 函数获取 PHP 响应(在您的情况下,可以访问数据库)的方法。

为了让事情变得更容易,您应该查看$.post method from jQuery .

祝你研究顺利!

关于javascript - var notification = 新通知,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29768362/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com