Javascript打开新窗口,需要停止加载

时间:2013-09-27 10:54:21

标签: javascript

好的,所以我正在开发一个有游戏页面和宾果游戏页面的宾果游戏网站。我需要玩家在玩宾果游戏时能够同时玩赌场游戏。

发生的事情就是在同一个窗口加载所有东西。

目前我在onclick事件上的时间如下......

<a href="javascript:void(0);" onclick="Player.LaunchBingoRoom('169')">

LaunchBingoRoom我有:

LaunchBingoRoom: function (roomId) {
        if (!Player.IsLoggedIn()) {
            window.location.href = 'loginpage.html?login2play';
            return;
        }
        var roomFound = false;

        ko.utils.arrayForEach(Player.BingoRooms(), function (roomInstance) {
            var bingoRoomId = roomInstance.RoomId();
            if (bingoRoomId.toLowerCase() == roomId.toLowerCase()) {
                roomFound = true;
                Game.OpenBingoRoomWindow(roomId, 100, 100);
                return;
            }
        });

我如何将open.window放入?

非常感谢任何帮助。

由于

在这里,对不起那个。

 OpenBingoRoomWindow: function (roomId, left, top) {
        var session = Game.SessionDetails();
        if (session == undefined) {
            return false;
        }
        window.open(((document.location.protocol == 'https:') ? 'https://' : 'http://') + this.BaseUrl + '/launch/bingo/' + roomId + '/' + session.UserId + '/' + session.SessionId + '/' + session.JSessionId + '/' + session.Language, "BingoRoom", "width=800,height=600,left=" + left + ",top=" + top + ",toolbar=0,status=0,location=no,");
        return true;
    },

1 个答案:

答案 0 :(得分:1)

在新窗口中打开,使用window.open(),更改:

window.location.href = 'loginpage.html?login2play';

window.open('loginpage.html?login2play');