26 lines
474 B
HTML
Executable File
26 lines
474 B
HTML
Executable File
<!doctype html>
|
|
<html lang="zh">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>test</title>
|
|
</head>
|
|
|
|
<body>
|
|
<script src="../lib/jquery-1.10.2.js"></script>
|
|
<script src="../dist/dialog.js"></script>
|
|
<script>
|
|
var d = dialog({
|
|
content: 'hello world'
|
|
});
|
|
|
|
d.show();
|
|
|
|
$(document).on('contextmenu', function(event) {
|
|
d.open && d.show(event);
|
|
return !d.open;
|
|
});
|
|
</script>
|
|
</body>
|
|
|
|
</html> |