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