fuc/public/assets/baba/test/close.html
2025-02-23 13:30:57 +08:00

38 lines
849 B
HTML
Executable File

<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>test</title>
</head>
<body>
<button id="test">close().remove()</button>
<script src="../lib/jquery-1.10.2.js"></script>
<script src="../dist/dialog.js"></script>
<script>
var d = dialog({
title: '消息',
content: '风吹起的青色衣衫,夕阳里的温暖容颜,你比以前更加美丽,像盛开的花<br>——许巍《难忘的一天》',
okValue: '确 定',
ok: function() {}
});
d.show();
$('#test').on('click', function() {
d.close().remove();
});
d.onclose = function() {
alert('对话框关闭');
};
d.onremove = function() {
alert('对话框销毁');
};
</script>
</body>
</html>