62 Stimmen

window.focus() funktioniert nicht in Google Chrome

Ich frage mich nur, ob Google Chrome Folgendes unterstützen wird window.focus() zu einem bestimmten Zeitpunkt. Wenn ich Unterstützung meine, dann meine ich, dass es funktionieren soll. Der Aufruf scheitert nicht, er tut nur nichts. Alle anderen großen Browser haben dieses Problem nicht: FireFox, IE6-IE8 und Safari.

Ich habe eine clientseitige Klasse zur Verwaltung von Browser-Fenstern. Wenn ich zum ersten Mal ein Fenster erstellen, kommt das Fenster in den Fokus, aber nachfolgende Versuche, den Fokus auf das Fenster zu bringen, funktionieren nicht.

Soweit ich das beurteilen kann, scheint dies eine Sicherheitsfunktion zu sein, um lästige Pop-ups zu vermeiden, und es scheint kein WebKit-Problem zu sein, da es in Safari funktioniert.

Ich weiß, dass jemand vorgeschlagen hat, das Fenster zu schließen und es dann wieder zu öffnen, aber das ist eine schreckliche Lösung. Googeln zeigt, dass ich nicht die einzige Person zu sein scheine, die damit frustriert ist.

Und nur um 100% klar zu sein, ich meine neue Fenster, nicht Registerkarten (Registerkarten können nicht fokussiert werden, von dem, was ich gelesen habe) und alle Fenster geöffnet werden, sind in der gleichen Domäne.

Irgendwelche Ideen, Umgehungsmöglichkeiten, abgesehen von der schlechten, die ich oben erwähnt habe?

Es gibt einen Fehler im Chromium-Projekt zu diesem Thema, sehen Sie es sich an aquí . Danke für die Veröffentlichung Reich .

MyCompany = { UI: {} }; // Put this here if you want to test the code. I create these namespaces elsewhere in code.

MyCompany.UI.Window = new function() {
    // Private fields
    var that = this;
    var windowHandles = {};

    // Public Members
    this.windowExists = function(windowTarget) {
        return windowTarget && windowHandles[windowTarget] && !windowHandles[windowTarget].closed;
    }

    this.open = function(url, windowTarget, windowProperties) {
        // See if we have a window handle and if it's closed or not.
        if (that.windowExists(windowTarget)) {

            // We still have our window object so let's check if the URLs is the same as the one we're trying to load.
            var currentLocation = windowHandles[windowTarget].location;

            if (
                (
                    /^http(?:s?):/.test(url) && currentLocation.href !== url
                )
                    ||
                (
                    // This check is required because the URL might be the same, but absolute,
                    // e.g. /Default.aspx ... instead of http://localhost/Default.aspx ...
                    !/^http(?:s?):/.test(url) &&
                    (currentLocation.pathname + currentLocation.search + currentLocation.hash) !== url
                )
            ) {
                // Not the same URL, so load the new one.
                windowHandles[windowTarget].location = url;
            }

            // Give focus to the window. This works in IE 6/7/8, FireFox, Safari but not Chrome.
            // Well in Chrome it works the first time, but subsequent focus attempts fail,. I believe this is a security feature in Chrome to avoid annoying popups.
            windowHandles[windowTarget].focus();
        }
        else
        {
            // Need to do this so that tabbed browsers (pretty much all browsers except IE6) actually open a new window
            // as opposed to a tab. By specifying at least one window property, we're guaranteed to have a new window created instead
            // of a tab.
            windowProperties = windowProperties || 'menubar=yes,location=yes,width=700, height=400, scrollbars=yes, resizable= yes';
            windowTarget = windowTarget || "_blank";

            // Create a new window.
            var windowHandle = windowProperties ? window.open(url, windowTarget, windowProperties) : window.open(url, windowTarget);

            if (null === windowHandle) {
                alert("You have a popup blocker enabled. Please allow popups for " + location.protocol + "//" + location.host);
            }
            else {
                if ("_blank" !== windowTarget) {
                    // Store the window handle for reuse if a handle was specified.
                    windowHandles[windowTarget] = windowHandle;
                    windowHandles[windowTarget].focus();
                }
            }
        }
    }
}

CodeJaeger.com

CodeJaeger ist eine Gemeinschaft für Programmierer, die täglich Hilfe erhalten..
Wir haben viele Inhalte, und Sie können auch Ihre eigenen Fragen stellen oder die Fragen anderer Leute lösen.

Powered by:

X