开发者

Cant call Javascript function from button onclick event ASP.NET 4

开发者 https://www.devze.com 2023-04-05 19:28 出处:网络
when ever i call a JavaScript function from asp:button onclick event i got this error message HTML <asp:Button ID=\"btnFromCalOpen\" runat=\"server\" Text=\" &gt; \"onclick=\"ShowCal()\"CssCl

when ever i call a JavaScript function from asp:button onclick event i got this error message

HTML

<asp:Button ID="btnFromCalOpen" runat="server" Text=" &gt; "  onclick="ShowCal()"  CssClass = "SElementHide" />

Javascript

function ShowCal() {

    var elem = document.getElementById('MainContent_CalendarFrom');
    if (elem.visibility = "hidden" )
    {
    elema.style.visibility = "visible";
    elema.style.开发者_Go百科display = "block";
    }
    else
    {
    elema.style.visibility = "hidden";
    elema.style.display = "none";
    }
}

Error Compiler Error Message: BC30456: 'ShowCal' is not a member of 'ASP.default_aspx'.

Please Help


Use OnClientClick to have your ASP.NET button run a JavaScript method before calling its server-side method. OnClick specifies the server side method to run.

<asp:Button ID="btnFromCalOpen" runat="server" 
         Text=" &gt; "  CssClass = "SElementHide" 
         OnClientClick="ShowCal()" />


use OnClientClick. onclick is for a server side handler.

also you need to check elem.style.visibility.

also you're creating elem in your js function and then trying to access elema.


Have you tried the OnClientClick property?

http://msdn.microsoft.com/en-us/library/system.web.ui.webcontrols.button.onclientclick.aspx

Also, this does not look correct:

if (elem.visibility = "hidden")

Should be closer to:

if (elem.style.visibility == "hidden")

Are you also looking for the button to prevent post back? Then, return false in your ShowCal javascript function.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号