我正在开发Firefox Mobile(Fennec)扩展,我想在内容脚本中使用jQuery。 最好的方法是什么?
我正在对桌面版的Firefox Mobile 4进行测试
答案 0 :(得分:2)
<强> overlay.js中强>
window.addEventListener("load", function (aEvent){
document.getElementById("browsers").addEventListener("DOMContentLoaded", function onWindowLoad(aEvent){
window.messageManager.loadFrameScript("chrome://myExtension/content/jquery.js", true);
window.messageManager.loadFrameScript("chrome://myExtension/content/content.js", true);
}, false);
<强>的jquery.js 强>
addEventListener('DOMContentLoaded', function(event) {
with(content){
/* jQuery core code goes here */
}
}, true);
<强> content.js 强>
addEventListener('DOMContentLoaded', function(aEvent) { // on page load
with(content) {
if (aEvent.originalTarget.location.href != null) {
if (aEvent.originalTarget.location.href == document.location.href && document.location.href != 'about:home') {
//alert(jQuery(document).attr('title') + '\n' + jQuery(location).attr('href'));
}
}
}
}, true);