2

我正在开发一个需要访问 jquery-ui 和 jquery min 的书签。当然,需要注意的是页面可能已经加载了 jQuery,应该避免冲突。

使用位于http://benalman.com/code/javascript/jquery/jquery.ba-run-code-bookmarklet.js的 Ben Alman 的代码,我已经能够优雅地引入 jQuery 并在 UI 中进行黑客攻击以加载,但是延迟似乎存在问题,并且 jQuery UI 还没有准备好立即运行......

在执行实际代码之前,是否有更好的方法来处理按顺序加载两个脚本?

(function( window, document, jQuery, req_version, callback, callback_orig, parent, script ){

  if ( !window[jQuery] || req_version > window[jQuery].fn.jquery ) {
    parent = document.documentElement.childNodes[0];
    script = document.createElement('script');
    script.type = 'text/javascript';
    script.src = 'http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js';
    parent.appendChild(script);

    callback_orig = callback;
    callback = function($, L) {
      '$:nomunge, L:nomunge';
      $(script).remove();
      callback_orig( $, L );
    };
  }

  if (typeof jQuery.ui == 'undefined'){
   parent = document.documentElement.childNodes[0];
   scriptui = document.createElement('script');
   scriptui.type = 'text/javascript';
   scriptui.src = 'https://ajax.googleapis.com/ajax/libs/jqueryui/1.8.7/jquery-ui.js';
   parent.appendChild(scriptui);
   alert('Loading your matches...');
  } 

  (function loopy($){
    '$:nomunge'; // Used by YUI compressor.

    ( $ = window[jQuery] ) && req_version <= $.fn.jquery
      ? callback( parent ? $.noConflict(1) : $, !!parent ) : setTimeout( loopy, 50 );
  })();

})( window, document, 'jQuery', '1.3.2',

 function($,L) {
    '$:nomunge, L:nomunge';   

<all the jquery stuff goes here>

Using jQuery UI in a Bookmarklet有一个类似的问题,并提供了深入的答案,但我无法将其从 CoffeeMarklet 翻译为“标准”js。

4

1 回答 1

3

在这里查看我的要点 - 这是一个用于加载 jQuery 的书签模板,但您可以在执行之前指定要加载的其他脚本和 css。

https://gist.github.com/2897748

你像这样初始化它。

编辑:如果您需要加载依赖项,您可以创建一个数组并根据不同的条件将内容推送到其中。

var jsDependencies = [];

// This will only load jQuery UI if it does not exist already.
// Of course if you rely on the page's copy, you have to do some 
// more advanced things to check for versions and whatnot.
if(!window.jQuery || !window.jQuery.ui){
  jsDependencies.push('http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.18/jquery-ui.min.js');
}

var MyBookmarklet = MyBookmarklet || new Bookmarklet({
  // debug: true, // use debug to bust the cache on your resources
  css: ['/my/style.css'],
  js: jsDependencies,
  // jqpath: '/my/jquery.js', // defaults to google cdn-hosted jquery
  ready: function(base) { // use base to expose a public method
    base.init = function(){
      // doStuff();
    }    
    base.init();
  }
});
于 2012-07-03T17:51:37.870 回答