我想使用 JQUERY UI,但我遇到了问题。我想在对话框中选择按钮,然后在我的页面中执行某些操作。这些是我用来生成对话框的代码:
<script type="text/javascript">
$(function(){
// Dialog
$('#dialog').dialog({
resizable: false,
autoOpen: false,
width: 300,
height: 140,
modal: true,
buttons: {
"Ok": function() {
$(this).dialog("close");
},
"Cancel": function() {
$(this).dialog("close");
}
}
});
// Dialog Link
$('#dialog_link').click(function(){
$('#dialog').dialog('open');
return false;
});
});
</script>
<body>
<a href="#" id="dialog_link">Open Dialog</a>
<!-- ui-dialog -->
<div id="dialog" title="Dialog Title">
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit</p>
</div>
</body>