我想在我的Bookmarklet中使用jQuery。我将来自bookmarklet.js的源包含在bookmarklet中,因此jQuery文件没有更多的位置。
我试过在包含的bookmarklet.js中包含jQuery
var s=document.createElement('script');
s.setAttribute('src','http://jquery.com/src/jquery-latest.js');
document.getElementsByTagName('body')[0].appendChild(s);
但它不起作用。我做错了什么?
答案 0 :(得分:0)
尝试添加一个属性以指定源文件的类型:
s.setAttribute('type', 'text/javascript');