//默认的   new Dialog(‘这是一个默认对话框‘).show();   //非模态对话框   new Dialog(‘非模态对话框,可以打开多个.,{modal:false}).show();   //自动关闭   new Dialog(‘5秒后自动关闭‘,{time:5000}).show();   //非fixed模式   new Dialog(‘对话框不随滚动条移动‘,{fixed:false}).show();