我想写一个翻译用户选择文本的插件。但我停在“获取选定的文本”上。我尝试了很多选项,但没有一个不起作用(可能是我的错)。
现在我的global.html看起来像这样:
<script >
// Set up Listener(s)
safari.application.addEventListener("command", performCommand, false);
// Functions to perform when event is received
function performCommand(event) {
if (event.command === "contextmenutranslate") {
alert("first");
alert(window.getSelection());
}
}
</script>
第二个警报返回空字符串。
我究竟做错了什么?
我该怎么办?