隐藏按钮使用Jquery对话框
本文关键字:Jquery 对话框 按钮 隐藏 | 更新日期: 2023-09-27 17:50:26
我在ASP上使用jQuery对话框。净c#。当我点击"显示对话框"按钮时,出现对话框,并在对话框中显示"显示对话框"按钮。我想隐藏这个按钮。请帮帮我。这是我的代码:
<script type="text/javascript">
$(".printt").live("click", function () {
$("#dialog").dialog({
title: "Password Confirm",
buttons: {
Ok: function () {
$("[id*=btnWhatch]").click();
},
Close: function () {
$(this).dialog('close');
}
},
});
return false;
});
</script>
和ASPx
<div id="dialog">
<dx:ASPxButton ID="ShowDialog" CssClass="printt" runat="server" Text="Show Dialog">
</dx:ASPxButton>
</div>
感谢您的帮助
点击Show dialog
按钮后隐藏按钮。
$('#ShowDialog').hide();