我目前正在尝试开发一个Chrome插件,可以在每个访问过的网页中发现不同名称的出现。
当插件找到名称时,它基本上会在其旁边添加一个图标。单击时,将显示一个引导程序弹出窗口,其中包含有关此人的更多信息。
当我尝试运行我的代码时,我收到此错误:
VM887:1未捕获的TypeError:$(...)。popover不是函数(...)
这是我的代码:
$('head').append('<script async src="https://cdnjs.cloudflare.com/ajax/libs/jquery/1.12.1/jquery.min.js"></script>\
<script async src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>');
$(document).ready(function(){
var name = "Nicolas";
// console.log('Document is ready.. scanning for politicians...');
//var hashmap = db_reader.getHashMap();
var counter = {i: 0}; //Occurences. Singleton to be passed by reference and not by value.
$('p').each(function(index) {
addImage(this, counter);
});
$('li').each(function(index) {
addImage(this, counter)
});
$('head').append(
"<script>$(function(){$('[data-toggle=\"popover\"]').popover();});\
</script>"
);
});
function addImage(context, counter) {
var body = $(context).text();
var word;
var reg = /[A-Z]+[a-z]*/gm;
while(word = reg.exec(body)){
// console.log("while");
if(word == name){
// console.log(word);
var image = '<a href="#" data-toggle="popover" title="Popover Header" data-content="A wonderful content" id="popover'+counter.i+'" class="politicianFind">\
<img alt="name" src="https://s15.postimg.org/pei4ci3fv/fdp.png">\
</a>';
// console.log("Replacing HTML");
$(context).html(body.replace(word, word + " " + image));
counter.i++;
}
}
}
我已经搜索了很多,但我找不到任何解决此问题的方法。
亲切的问候,
Florian
答案 0 :(得分:0)
我认为这是因为当您调用方法popover
时尚未加载引导脚本。
您有两个选择:
$(window).load
- http://output.jsbin.com/qoteqe 顺便说一下为什么要添加另一个jQuery引用?如果您清楚地使用$('head').append
,那么您的页面中已经有了jQuery。 ISN&#39;?吨