最佳答案
这似乎是最简单的事情,但它就是不工作。在普通浏览器中。Html 及。Js 文件工作得很完美,但是在 Chrome/Firefox 扩展中,onClick
函数没有完成它应该完成的工作。
Js 文件:
function hellYeah(text) {
document.getElementById("text-holder").innerHTML = text;
}
Html 文件:
<!doctype html>
<html>
<head>
<title>
Getting Started Extension's Popup
</title>
<script src="popup.js"></script>
</head>
<body>
<div id="text-holder">
ha
</div>
<br />
<a onClick=hellYeah("xxx")>
hyhy
</a>
</body>
</html>
所以基本上一旦用户点击“ hyhy”,“ ha”就会变成“ xxx”。同样,它在浏览器中完美工作,但在扩展中不工作。你知道为什么吗?以防万一我还要附上下面的声明。
Json:
{
"name": "My First Extension",
"version": "1.0",
"manifest_version": 2,
"description": "The first extension that I made.",
"browser_action": {
"default_icon": "icon.png",
"default_popup": "popup.html"
},
"permissions": [
"http://api.flickr.com/"
]
}