1

我有一个应用程序,我想要一个按钮在单独的窗口中打开三个不同的日历。该按钮有一个引用他以下 JS 函数的操作:

 function all_calendars() {
    var target = "www.calendar_a.com";
    var title = "Calendar A";
    window.open(target, title, '_new');

    var target = "www.calendar_b.com";
    var title = "Calendar B";
    window.open(target, title, '_new');

    var target = "www.calendar_c.com";
    var title = "Calendar C";
    window.open(target, title, '_new');

}

只有第三个日历在新选项卡中打开。我更喜欢三个窗口,虽然我认为这是一个浏览器设置,但为什么只有一个打开?

4

1 回答 1

1

MDC 在关于 open 方法的文档中声明

名称不应包含任何空格

因此,您将在同一个“日历”窗口中打开所有内容。

于 2012-08-28T21:50:03.193 回答