const myPopup = myWindow.create({ // 名称 name: 'my-window-name', // 标题 title: 'Window0', // 位置 left: 20, top: 20, // 宽高 width: 320, height: 220, // 最小款高 minWidth: 160, minHeight: 100, // 拖拽 movable: true, // enable resizable resizable: true, // 自定义样式 style: { backgroundColor: 'rgba(220,220,220,0.8)', overflow: 'auto', }, // HTML 内容 html: 'Contents', // iframe url: 'content01.html', // 回调 urlLoaded: (frame) = {} });