mirror of
https://github.com/jquery/jquery-ui.git
synced 2024-11-21 11:04:24 +00:00
57 lines
2.4 KiB
HTML
57 lines
2.4 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>jQuery UI Dialog - Buttons Demo</title>
|
|
<link type="text/css" href="../demos.css" rel="stylesheet" />
|
|
<link type="text/css" href="../../themes/default/ui.all.css" rel="stylesheet" />
|
|
<script type="text/javascript" src="../../jquery-1.2.6.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.core.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.draggable.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.resizable.js"></script>
|
|
<script type="text/javascript" src="../../ui/ui.dialog.js"></script>
|
|
<script type="text/javascript">
|
|
$(function() {
|
|
$("#dialog").dialog({
|
|
modal: true,
|
|
overlay: {
|
|
backgroundColor: '#000',
|
|
opacity: 0.5
|
|
},
|
|
buttons: {
|
|
'Delete this file': function() {
|
|
alert('The user was deleted forever!');
|
|
},
|
|
Cancel: function() {
|
|
alert('You clicked Cancel. The dialog will now close.');
|
|
$(this).dialog('close');
|
|
}
|
|
}
|
|
});
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
|
|
<div id="dialog" title="Modal confirmation dialog">
|
|
<p>This type of dialog adds a button bar and is useful for confirming an action that may be destructive or important. These are typically displayed as modal dialogs to get the user's attention and force a decision before continuing.</p></div>
|
|
|
|
|
|
<!-- Sample page content to illustrate the semi-transparent overlay screen -->
|
|
<div style="padding:20px;">
|
|
<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p>
|
|
<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p>
|
|
<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p>
|
|
<form>
|
|
<input value="text input" /><br />
|
|
<input type="checkbox" />checkbox<br />
|
|
<input type="radio" />radio<br />
|
|
<select>
|
|
<option>select</option>
|
|
</select><br /><br />
|
|
<textarea>textarea</textarea><br />
|
|
</form>
|
|
</div>
|
|
|
|
</body>
|
|
</html>
|