在Kango浏览器扩展开发中弹出mouseover事件

时间:2015-03-08 04:50:34

标签: javascript jquery cross-browser content-script kango-framework

我正在使用Kango Extension Framework

开发浏览器扩展程序

通过使用内容脚本我已经在页面中注入了一些代码,如下所示

<span onmouseover= "hello('testing_name')" style='width:17%;padding: 3px; background-color: red; color: white; />

我只在同一个内容脚本中使用hello(str)函数定义,

如下所示

function hello(test_name)
{
    alert(test_name);
}

但每当我试图鼠标悬停在Span元素上时, 发生ReferenceError: hello is not defined错误。

我在这里做错了什么

1 个答案:

答案 0 :(得分:1)

好吧,我已经通过将外部js文件注入当前加载的页面来解决它,并在该外部js文件中编写该函数。现在它工作正常