* @description 关闭窗口
()
| 3603 | * @description 关闭窗口 |
| 3604 | */ |
| 3605 | function closeFrame() { |
| 3606 | log(`关闭窗口 ID: ${id.value}`); |
| 3607 | // 窗口显示 |
| 3608 | frame.show = false; |
| 3609 | // 关闭 |
| 3610 | frame.closed = true; |
| 3611 | // 标题 |
| 3612 | frame.title = ''; |
| 3613 | // src |
| 3614 | frame.src = ''; |
| 3615 | } |
| 3616 | /** |
| 3617 | * @description 关闭 frame |
| 3618 | */ |
no test coverage detected