我有这个代码:
function openFile(_title, file, id, _height, _width)
{
$.fx.speeds._default = 500;
$(document).ready(function()
{
if (_height == '')
_height = 250;
if (_width == '')
_width = 500;
var dialogOpts = {
title: _title,
modal: true,
height: _height,
width: _width,
draggable: false,
resizable: false,
show: "puff",
hide: "puff"
};
$("#dialog").dialog(dialogOpts);
$("#dialog").load(file, [], function(){ $("#dialog").dialog("open"); });
});
}
它在 Firefox 和 Chrome 中运行良好,但在 Opera 和 IE 中都没有。弹出对话框,但其中没有内容。它只显示标题。
我尝试将最后一行更改为
$.get(file, function(result) {
$('#dialog').append(result);
});
和
$("#dialog").load(file);
但这也没有用。