这是我在SO上的第一篇文章以及我第一次制作Chrome扩展程序。我已经阅读了很多文档,但我仍然不确定如何使用它。下面是我的html和js文件。我希望能够在源框中键入内容,并在结果区域实时打印出单词。我已经在我的本地主机上测试了这段代码,所以我知道它有效,但出于某种原因,它正在作为chrome扩展。
popup.html
<!doctype html>
<html>
<head>
<title>Getting Started Extension Popup</title>
<style>
body {
min-width: 357px;
overflow-x: hidden;
}
img {
margin: 5px;
border: 2px solid black;
vertical-align: middle;
width: 75px;
height: 75px;
}
</style>
<script src="popup.js"></script>
</head>
<body>
<textarea id="source"></textarea>
<div id="result">
</div>
</body>
</html>
这里是js:
function main() {
document.getElementById('source').keydown(function() {
var source = document.getElementById('source').value;
var outputValue = source.replace(/command/gi, "⌘")
.replace(/tab/gi, "⇥")
.replace(/return/gi, "⏎")
.replace(/option/gi, "⌥")
.replace(/control/gi, "⌃")
.replace(/esc/gi, "⎋")
.replace(/left/gi, "←")
.replace(/down/gi, "↓")
.replace(/up/gi, "↑")
.replace(/right/gi, "→")
.replace(/shift/gi, "⇧")
.replace(/eject/gi, "⏏")
.replace(/caps\s\(lock\)/gi, "⇪")
.replace(/save/gi, "⌘ + S")
.replace(/print/gi, "⌘ + P")
.replace(/find/gi, "⌘ + F");
document.getElementById("result").innerHTML = outputValue;
}
}
答案 0 :(得分:2)
1)评论中wOxxOm所说的内容:element.keydown(function() { ... })
不存在。这肯定来自一些jQuery代码 - 如果你将它添加到扩展中,你可以使用它,或者你可以use addEventListener
。
2)你声明了一个函数main()
,但没有任何东西可以调用它。调用它的好地方是DOMContentLoaded
上的document
事件监听器:
document.addEventListener("DOMContentLoaded", main);
function main() {
/* ... */
}