我正在使用桌面通知。我使用這個代碼來顯示它,和它的做工精細:將文本文件的內容轉換爲javascript變量
// If the user is okay, let's create a notification
if (permission === "granted") {
var options = {
body: "This is the body of the notification",
icon: "icon.jpg",
dir : "ltr"
};
var notification = new Notification("Hi there",options);
}
但我怎麼能取從文本文件數據到options.body
?
哪裏是文本文件是從哪裏來的? –
如果你想加載一個文本文件,你可以使用Ajax。但是在使用Ajax之前,您需要設置一個Web服務器。 – undefined
文本文件來自服務器.. notificion.txt – Ryewell