39 lines
1.0 KiB
HTML
Executable File
39 lines
1.0 KiB
HTML
Executable File
<!doctype html>
|
|
<html lang="zh">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>test</title>
|
|
</head>
|
|
|
|
<body>
|
|
<button data-event="test">open dialog</button>
|
|
<script src="../lib/jquery-1.10.2.js"></script>
|
|
<script src="../dist/dialog.js"></script>
|
|
|
|
<script>
|
|
$('button[data-event=test]').on('click', function() {
|
|
var d = dialog({
|
|
title: '消息',
|
|
content: '风吹起的青色衣衫,夕阳里的温暖容颜,你比以前更加美丽,像盛开的花<br>——许巍《难忘的一天》',
|
|
okValue: '确 定',
|
|
quickClose: true,
|
|
ok: function() {
|
|
var that = this;
|
|
setTimeout(function() {
|
|
that.title('提交中..');
|
|
}, 2000);
|
|
return false;
|
|
},
|
|
follow: this,
|
|
cancelValue: '取消',
|
|
cancel: function() {}
|
|
});
|
|
|
|
d.show();
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html>
|