使用Jquery对话框隐藏按钮

时间:2015-05-23 04:29:07

标签: javascript c# jquery asp.net

我在ASP.NET C#上使用jQuery Dialog。当我单击“显示对话框”按钮时,出现对​​话框,对话框中也会显示“显示对话框”按钮。 我想隐藏这个按钮。请帮我。 这是我的代码:

 <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>

感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

单击Show dialog按钮后,只需隐藏按钮即可。

$('#ShowDialog').hide();