English 中文(简体)
Jquery - 对话框在IE6上显示不正确
原标题:
  • 时间:2009-02-07 10:49:42
  •  标签:

我正在尝试使用bgiform,但似乎没有效果。当在IE中显示时,对话框中的文本被推出屏幕。在FF中正常工作。有什么想法吗?

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Zoleris</title>
<link href="style.css" rel="stylesheet" type="text/css" />
<link href="jquery-ui-themeroller/theme/ui.theme.css" rel="stylesheet" type="text/css" />

<script type="text/javascript" src="jquery-1.3.1.js"></script>
<script type="text/javascript" src="bgiframe_2.1.1/jquery.bgiframe.js"></script>
<script type="text/javascript" src="jquery-ui-personalized-1.5.3.js"></script>
<script type="text/javascript">                                         
  $(document).ready(
  function()
  {
    $("#block").dialog({
    bgiframe: true});
  }
  );
 </script>
<style>
#block {
    width: 150px;
    height: 70px;
    margin: 10px;
}
</style>
</head>
<body>
<div id="block" title="title">blah</div>
</body>
</html>
问题回答

这个已经过时了,它被标记为Metaplugin

“Metaplugins”具有以下特点:

  • you could implement yourself with jQuery
  • it can be difficult to implement across browsers
  • users won t notice them

查看发布说明

现在它可以与jQuery1.1.3一起工作。

我建议你找其他类似的插件。





相关问题