我在 Google Chrome 扩展的 content.js 中有以下代码:
jQuery(document).ready(function () {
jQuery("body").html('<input type="button" id="soso" value="asd" onclick="goFrame()" />');
});
function goFrame() {
alert('Value');
}
该按钮已成功创建,但是当我单击它时,该消息未出现,并且在 Google Chrome 控制台中出现以下错误:
未捕获的 ReferenceError:未定义 goFrame