0

我说 jQuery 不能在Sharedworker中使用是对的吗?共享工作者在浏览器选项卡之外运行,并且无法访问窗口/文档(我知道关闭)所以我认为 jQuery 不会再次工作,我认为它需要访问窗口对象。

以上就是这种情况 - 是否有任何方法或结构可用于修改 jQuery 代码,以便在不访问窗口对象的情况下加载它?

看着 jQuery 代码,我看到了这个 -

( function( global, factory ) {

"use strict";

if ( typeof module === "object" && typeof module.exports === "object" ) {

    // For CommonJS and CommonJS-like environments where a proper `window`
    // is present, execute the factory and get jQuery.
    // For environments that do not have a `window` with a `document`
    // (such as Node.js), expose a factory as module.exports.
    // This accentuates the need for the creation of a real `window`.
    // e.g. var jQuery = require("jquery")(window);
    // See ticket #14549 for more info.
    module.exports = global.document ?
        factory( global, true ) :
        function( w ) {
            if ( !w.document ) {
                throw new Error( "jQuery requires a window with a document" );
            }
            return factory( w );
        };
} else {
    factory( global );
}

// Pass this if window is not defined yet
} )( typeof window !== "undefined" ? window : this, function( window, noGlobal ) {

所以没有访问窗口或文档,它不能工作?

4

0 回答 0