我试图只是弹出一个对话框的按钮点击在我的页面。我有以下的js代码:
$("#myDialog").dialog({
autoOpen: false,
modal: true,
title: "A Dialog Box",
buttons: {
'OK': function () {
var textValue = $('#myTextBox').val();
alert('The value of the text box is ' + textValue);
},
'Close': function () {
alert('The Close button was clicked');
$(this).dialog('close');
}
}
});
$('#clickMe').click(function () {
$("#myDialog").dialog("open");
});
和我html:
<div id="myDialog">
This is the content of my modal dialog box
<input type="text" id="myTextBox" />
</div>
<button style="position: absolute; left: 150px;" id="clickMe">Click Me</button>
每当我按下按钮,什么都不会发生。好像它只是为了展示,有什么想法吗?
1条答案
按热度按时间cgh8pdjw1#
下面是jQuery UI对话框的完整代码
第一个
Demo here