我正在使用ColorBox在屏幕上调用一些信息模态并给出客户端的要求,最好的方法是通过iFrames(不是我的第一选择,但无论如何)。一切都在Chrome,FF等中运行,但iFrame内容无法在任何版本的IE中使用。出现模态包装但内部没有任何内容。这就是我到目前为止所做的:
任何帮助将不胜感激。这是加重的。
一些代码:
$(function ()
{
$(".modal-large").colorbox({iframe:true, innerWidth:580, innerHeight:500});
})
HTML:
<div class="top-droptext"><a class="modal-large" href="modal/serviceproviderinfo.html">Update Password</a></div>
答案 0 :(得分:0)
这是doctype问题。您需要将其添加到colorbox调用者页面的开头:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">