iframe在Internet Explorer 8中不断刷新

时间:2013-12-24 13:26:24

标签: jquery internet-explorer internet-explorer-8 cross-browser

我的网站包含一个加载在模型中的iframe,它可以在Chrome,FireFox中正常运行,但它无法在Internet Explorer 8中运行。

如果我在受信任的网站中添加iframe中加载的网址,则可以正常使用。如果我在JavaScript中将警报放在下面的函数中,它也可以正常工作。我想提出一些其他的解决方案。这是我正在使用的JavaScript:

function OpenRemedySR(RemedyURL, event) {
    $('#hipAgModal').html('');
    $('#hipAgModal').html("<iframe src='" + RemedyURL + "' width='100%' height='100%'></iframe>");
    alert('Click OK to View Status');
    $('#hipAgModal').modal().css({
        'width': function () {
            return ($(document).width() * 0.7);
        },
        'height': function () {
            return ($(document).height() * 0.5);
        },
        'top': function () {
            return ('50%');
        }
    });
    return false;
}

0 个答案:

没有答案