Fancybox iframe无法在IE11中使用哈希网址

时间:2017-05-07 11:41:53

标签: javascript angularjs iframe fancybox

我在AngularJS和angularjs中使用“#”实现了Fancybox代码来创建URL。 Fancybox在IE11以外的所有浏览器中都能正常工作。请看我的代码:

$(document).on('click','.iframePopup',function(){
    var id_role = $(this).data('roleid');
    $.fancybox.open([
        {
        'transitionIn'  :   'elastic',
        'transitionOut' :   'elastic',
        'speedIn'       :   600,
        'speedOut'      :   200,
        type            :   'iframe',
        href            :   basePath + '#/getuser-list/'+id_role, 
        title           :   false,
        iframe          :   {
            preload     :   false
        }
        }
    ]);
});

请为我建议任何合适的解决方案,因此这个fancybox也可以在IE11中正常打开。

提前致谢。

0 个答案:

没有答案