jbox设置点击窗口外不关闭

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhaofuqiangmycomm/article/details/88745641

参数:persistent : true

function openW(url,title){
     top.$.jBox("iframe:"+url, {
             top:'5%',
            title: title,
            width: window.top.innerWidth-200,
            height: window.top.innerHeight-100,
            persistent: true,  //设置点击窗口外不关闭的参数
            buttons :{},
            showSpeed : 'fast',
            closed: function () {
                closeUpdate();
            }
   }); 
}

猜你喜欢

转载自blog.csdn.net/zhaofuqiangmycomm/article/details/88745641