我正在使用标签

<asp:Label ID="lblMessage" runat="server" Text="" BorderStyle="Solid"></asp:Label>


在脚本部分iam做某事

$('span[id$=lblMessage]').click(function()
    {
        $('#lblMessage').hide(slow);
    });


但它不起作用

最佳答案

这应该可行,您应该在slow周围加上引号

$(document).ready(function(){
    $("#<%= lblMessage.ClientID %>").click(function() {
        $(this).hide("slow");
    });
});

09-30 20:25