23 lines
449 B
HTML
23 lines
449 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
|
|
<head>
|
|
<script type="text/javascript">
|
|
function open_modal() {
|
|
if (window.showModalDialog) {
|
|
window.showModalDialog();
|
|
} else {
|
|
window.open('hello.txt', 'window', 'modal');
|
|
}
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<button onclick="window.open('hello.txt', 'window')" id="open-normal">normal</button>
|
|
<button onclick="open_modal()" id="open-modal">modal</button>
|
|
|
|
</body>
|
|
</html>
|