主题: 在单独调用dialog的时 问题一:能不能定位? 问题二:能不能不锁屏?
作者: No.1海枫, 发布日期: 2012-04-06 16:38:08, 浏览数: 2843

我现在单独调用dialog,我想设置dialog打开的位置不知道能不能设置,还有就是我在dialog打开的时候,不希望其它内容不可操作,不知道有没有这些函数。

另外,我觉得既然dialog可以单独调用,应该写一些dialog相关的文档,我在网站上找到的就一个默认的演示,没有完整的函数介绍

下面是我自己在单独调用的时候用的一个dialog函数,不知道怎么设置位置,望解答,谢谢!

//弹出Iframe[调用KindEditor]
function dialogUrl(id,width,height,title,url){
  var dialog=KindEditor.dialog({
    id : id,
    width : width,
    title : title,
    body : '<iframe name="dialogIframe" src="'+url+'" frameborder="false" scrolling="auto" width="100%" height="'+height+'" allowtransparency="true"></iframe>',
    closeBtn : {
      name : '关闭',
      click : function(e) {
        dialog.remove();
      }
    }
  });
}

 

发表新帖 发表回复