IE won't load PDF in a window created with window.open

后端 未结 2 1958
眼角桃花
眼角桃花 2021-02-19 13:25

Here\'s the problem, which only occurs in Internet Explorer (IE). I have a page that has links to several different types of files. Links from these files exe

2条回答
  •  无人及你
    2021-02-19 14:14

    try:

    function newwin(url,w,h) {
         var win = window.open("","temp","width="+w+",height="+h+",menubar=yes,toolbar=yes,location=yes,status=yes,scrollbars=auto,resizable=yes");
         win.location.href = url;
         win.focus();
    }
    

提交回复
热议问题