luckylei66

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::

SimpleModal 插件 

http://www.ericmmartin.com/projects/simplemodal/

 

以下代码可以避免在IE中使用simpleModal弹出iframe出错问题

 var license_no = ''


$(document).ready(function () {
    $('#quote').click(function (e) {
        license_no = $(this).attr("licenseNo");
        e.preventDefault();
        function setSrc() {
            $('#frame_content').attr("src", "/default.asp?UrlReferrer=coxIpro&license_no=" + license_no);                    
        }
        $.modal('<iframe src="" id="frame_content" style="overflow:auto" scrolling="yes" frameborder="0" height="550px" width="805px">', {
            onShow: function (dialog) {
                setSrc();
            },
            // Fix width issue in IE 7
            containerCss: {
                height: 560,
                padding: 0,
                width: 810
            },
            overlayClose: true,
            persist: false
        });
    });
});

 

posted on 2012-07-12 21:59  Leo.Wang  阅读(241)  评论(0编辑  收藏  举报