0

ポップアップを変更する方法を教えてくださいタイトル ..現在表示中http:\\s.codepen.ioこのURLを変更できますか?Javaスクリプトのポップアップタイトルを変更する方法は?

http://codepen.io/anon/pen/WRaZOq

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 whether notification permissions have already been granted 
    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 accepts, let's create a notification 
     if (permission === "granted") { 
     var notification = new Notification("Hi there!"); 
     } 
    }); 
    } 

    // At last, if the user has denied notifications, and you 
    // want to be respectful there is no need to bother them any more. 
}Notification.requestPermission().then(function(result) { 
    console.log(result); 
});function spawnNotification(theBody,theIcon,theTitle) { 
    var options = { 
     icon: theIcon 
    } 
    var n = new Notification(theTitle,options); 
} 

答えて

1

あなたは通知constructor

まず引数を見てする必要があります。 タイトルと2番目のargです。メッセージの本文などの詳細を指定するオブジェクトです。このようなものが必要です。

var notification = new Notification("the title",{body:"body of the notification"}); 
関連する問題