<!--引用必须包含下面的css 和hs文件-->
<script src="/Resources/jquery/js/jquery-1.7.2.min.js" type =\"text/javascript" ></script>
<link rel="stylesheet" href ="/Resources/jquery/css/jquery-ui.css" />
<link rel="stylesheet" href ="/Resources/jquery/css/jquery-ui-cupertino.css" />
<script src="/Resources/jquery/js/jquery-ui.js" type="text/javascript"></script>
<script src="/Resources/jquery/ui/jquery.ui.dialog.js" type ="text/javascript" ></script>
$("#divYSK").dialog({
position: ['center', 'center'],
height: 460,
width: 750,
resizable: false,
modal: true,
buttons: {
"确定": function () {
},
"清空": function () {
},
"返回": function () {
$(this).dialog("close");
}
},
close: function (event, ui) {
$("#divYSK").dialog("close");
}
});
|