我正在 android phonegap 中做一个项目。这里我想在状态栏中显示通知的数量。我已经使用链接Status Bar Notification实现了状态栏通知。我为显示通知而更改的代码如下所示。
<!DOCTYPE HTML>
<html>
<head>
<title>Cordova</title>
<script type="text/javascript" charset="utf-8" src="cordova-2.0.0.js"></script>
<script type="text/javascript" charset="utf-8" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript" charset="utf-8" src="statusbarnotification.js"></script>
<script type="text/javascript">
var count = 0;
function show_notify(){
count = count+1 ;
//alert(count);
var title = "message";
var alerts = "You have "+count+ " message";
window.plugins.statusBarNotification.notify(title, alerts);
}
</script>
</head>
<body>
<a href="#" onclick='show_notify()'>Click!</a>
</body>
</html>
在这里,对函数 show_notify() 的每次调用都会增加count的值,并以“您有 [1 or 2 or 3...] 消息”的格式显示通知的数量。我的问题是如何设置 varibale 的值清除状态栏中的通知后计数为零,单击通知时我应该在哪里更改代码以重定向到特定页面。