在方法之后启用按钮

发布于 2024-11-08 13:58:13 字数 106 浏览 0 评论 0原文

我的 JavaScript 遇到问题。 我需要一个按钮在上传图像后“启用”,但发生的情况是它重新启动了该功能。上传图片后,被禁用的按钮将被“启用”,但一眨眼,它又会被禁用。知道如何解决这个问题吗?

I am having problems with my javascript.
I need a button to "enable" after uploading an image, but what happens is it restarts the function. After uploading the image, the button that is disabled will be "enabled" but in just a blink of an eye, it will be disabled again. Any idea how to fix this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

场罚期间 2024-11-15 13:58:13

试试这个:
将显示按钮最初设置为无,如下所示:

    <asp:Button id="btnID" runat="server" style="display:none">

在上传按钮单击事件中上传后,将按钮显示更改为阻止:

      UploadBtn_Click()
      {
               //perform Upload logic here
                 btnID.attributes.add("style","display:block");
       }

希望这有帮助..

Try this:
Keep the display button initially to none as follows:

    <asp:Button id="btnID" runat="server" style="display:none">

After uploading within the upload button click event change the button display to block :

      UploadBtn_Click()
      {
               //perform Upload logic here
                 btnID.attributes.add("style","display:block");
       }

Hope this helps..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文