IE中的window.load引用没有触发onload

时间:2017-01-02 10:12:30

标签: javascript jquery internet-explorer pdf jquery-plugins

我在新窗口中打开PDF链接,同时打开PDF我想将新标签的标题设置为“您的标题”,代码如下

<script type="text/javascript">

$(document).ready(function(){
    var mapWin = window.open('${pdfUrl}');
    mapWin.onload = function(){
        alert("on load");
        console.log("document on load......")
        setTimeout(function(){
         $(mapWin.document).find('html').append('<head><title>your title</title></head>');
        }, 500);
    }
});

“pdfUrl”是一个服务调用,它传输PDF。 我正在Chrome中收到提醒,新标签的标题也会根据需要进行设置。但在IE中,我无法设置标题,我甚至没有得到onload函数内的警报。

0 个答案:

没有答案