Oleksandr Kulchytskyi
Привет, надеюсь, мое объяснение вам поможет.
Прежде всего убедитесь, что у вас есть ссылки на библиотеки jquery: например
<head>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jQuery/jquery-1.5.1.min.js"></script>
<script type="text/javascript" src="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.10/jquery-ui.min.js"></script>
<link href="http://ajax.aspnetcdn.com/ajax/jquery.ui/1.8.10/themes/ui-lightness/jquery-ui.css" rel="stylesheet" type="text/css" />
</head>
Затем на Вашей странице объявите какой-нибудь всплывающий диалог:
<div id="CheckMessagesDialog" style="display: none">
</div>
<button id="testBtn">Press me</button>
На странице готовый обработчик событий добавьте несколько строк инициализации:
$(document).ready(function () {
$('#MessagesDialog').dialog({
autoOpen: false, modal: true,
width: 450, height: 400,
hide: "explode", show: "blind",
closeOnEscape: true,
buttons: {
"Close": function () {
$(this).dialog("close");
}
},
open: function (event, ui) {
}
});
}
$('#testBtn').click(function(){
if ($("#MessagesDialog").dialog("isOpen") === true) {
$("#MessagesDialog").dialog("close");
}
$("#MessagesDialog").dialog({ title: "Hello tittle" });
$("#MessagesDialog").dialog('open');
});