2
我正在爲Safari瀏覽器的擴展我創建了命令上下文項= showNote
Safari瀏覽器插件safari.application錯誤
在調試器中我得到的第8行follwing錯誤TypeError: Result of expression 'safari.application' [undefined] is not an object
(最後一行)
在這項工作之前,您是否需要包含或調用任何東西?
main.js
function showNote(event){
if(event.command == "showNote"){
addElement = document.createElement('<div id="safExtNote"><textarea id="safExtNoteText"></textarea><button id="safExtSave">Save</safExtNote></div>');
document.body.appendChild(addElement)
alert("im online");
}
}
safari.application.addEventListener("command", showNote, false);