Firefox打开window.open无法正常工作

时间:2017-10-07 06:42:22

标签: javascript firefox browser

我创建标记<a href="http://s02.radio-tochka.com:4870/radio" class="player-link" target="_blank">Button</a>并在添加事件监听器之后`var button = document.querySelector('。player-link');

    button.addEventListener('click', function (event) {
        event.preventDefault();

        window.open(
            event.target.href,
            "mywin",
            "width=340, height=280, status=0, menubar=0, location=0, resizable=0, directories=0, toolbar=0, scrollbar=1"
        )
    })

, but Firefox open new window and in address bar just约:blank`。可能有什么问题?

1 个答案:

答案 0 :(得分:0)

在文档中找到:

  

远程网址不会立即加载。当window.open()返回时,窗口始终包含about:blank。 URL的实际提取是延迟的,并在当前脚本块完成执行后启动。窗口创建和引用资源的加载是异步完成的。