根据this指南
我试图将JQuery加载到我的Firefox扩展中。

var Myext = {

  loadJQuery: function(wnd) {
      var loader = Components.classes["@mozilla.org/moz/jssubscript-loader;1"]
        .getService(Components.interfaces.mozIJSSubScriptLoader);
      loader.loadSubScript("chrome://myext/content/jquery-1.7.2.min.js", wnd);
      var jQuery = wnd.jQuery.noConflict(true);
      try {
        loader.loadSubScript("chrome://myext/content/jquery.hoverIntent.js", jQuery);
      catch (Except) {
        alert(Except.toString());
      }
      return jQuery;
  },

  onLoad: function(e) {
    Myext.jQuery = Myext.loadJQuery(window);
  },

  showDialog: function(e) {
    var $ = Myext.jQuery;
    /* JQuery code */
  }

}

window.addEventListener("load", function(e) { Myext.onLoad(e); }, false);
window.addEventListener("DOMContentLoaded", function(e) { Myext.showDialog(e); }, false);

加载程序在加载jquery.hoverIntent.js时遇到问题。我下载了here

错误消息:"Type Error: $ is undefined"

最佳答案

为了使用.dialog(),您还需要包括jQuery UI库。在加载jQuery库之后,将下一行放在右边:

loader.loadSubScript("chrome://myext/content/jquery-ui-1.8.18.custom.min.js", wnd);

您可以从here下载的最后一个jQuery UI库。

关于Firefox扩展中的jQuery.hoverIntent.js无法加载,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9942818/

10-16 23:29