代码在IE5中不起作用。我怎样才能在IE5中工作?

时间:2018-03-07 19:45:48

标签: javascript internet-explorer

//达到超时时会显示以下代码。停电页面在IE文档5中不起作用。

function queryTimeout() 
{
        var fragment = document.createDocumentFragment();
        var black = document.createElement('div');
        black.setAttribute('style','font-family:arial;position:absolute;' + 
        'left:0;top:0;' + 
        'background-color:black;z-index:10000;min-width:100%;' + 
        'min-height:100%;overflow:hidden');
        fragment.appendChild(black);
        var body = document.body;
        body.appendChild(fragment);


}

0 个答案:

没有答案