我正在使用 JavaScript 和 Html 中的 toast 开发用于消息传递通知的 Windows 8 应用程序。由于默认吐司声音是“默认”,但我想将其转换为“短信”声音。我还接受用户的输入,以了解在通知期间要显示的内容。
我的 HTML 代码看起来像
<div>String to display <input type="text" size="20" maxlength="20"
id="inputString" /></div>
<button id="inputButton" class="action">button</button>
javascript代码看起来像
(function () {
"use strict";
var page = WinJS.UI.Pages.define("/html/home.html", {
ready: function (element, options) {
document.getElementById("inputButton").addEventListener("click", noti, false);
...
function noti(e) {
var targetButton = e.currentTarget;
现在我被困现在该怎么办..
我有来自示例 sdk 的以下代码,我无法适应
var toastSoundSource = targetButton.id;
// Get the toast manager for the current app.
var notificationManager = Notifications.ToastNotificationManager;
var content = ToastContent.ToastContentFactory.createToastText02();
content.audio.content = ToastContent.ToastAudioContent[toastSoundSource];
我也读过一些博客说它可以通过使用它来完成
toast.Audio.Content = ToastAudioContent.Silent;
我想我只是把事情搞砸了。请尽快提供帮助。谢谢