在方法之后启用按钮
我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
将显示按钮最初设置为无,如下所示:
在上传按钮单击事件中上传后,将按钮显示更改为阻止:
希望这有帮助..
Try this:
Keep the display button initially to none as follows:
After uploading within the upload button click event change the button display to block :
Hope this helps..