好的,我在一个有游戏页面和宾果房间页面的宾果网站上工作。我需要玩家能够在玩宾果游戏的同时玩赌场游戏。
发生的事情是所有内容都加载在同一个窗口中。
例如,目前我在 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;
},