我正在尝试使用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>