在 Javascript 中隐藏按钮
在我最新的程序中,有一个按钮,单击时会显示一些输入弹出框。这些框消失后,如何隐藏按钮?
In my latest program, there is a button that displays some input popup boxes when clicked. After these boxes go away, how do I hide the button?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(12)
您可以将其
可见性
属性设置为隐藏
。这是一个小演示,其中一个按钮用于切换另一个按钮:
You can set its
visibility
property tohidden
.Here is a little demonstration, where one button is used to toggle the other one:
非常有用,但它仍然会占用页面空间。您也可以使用
它,因为这不仅会隐藏对象,而且会使其在显示之前不占用空间。 (另请记住,显示的反义词是“阻止”,而不是“可见”)
is very useful, but it will still take up space on the page. You can also use
because that will not only hide the object, but make it so that it doesn't take up space until it is displayed. (Also keep in mind that display's opposite is "block," not "visible")
像这样的东西应该删除它
如果你打算做很多这样的dom操作可能值得看看jquery
Something like this should remove it
If you are going to do alot of this dom manipulation might be worth looking at jquery
当然,如果你要做很多这样的事情,请使用 jQuery
of course if you are doing a lot of stuff like this, use jQuery
如果该页面上的空间未被禁用,则将按钮放入 div 内。
使用 Jquery:
使用 JS:
If the space on that page is not disabled then put your button inside a div.
Using Jquery:
Using JS:
当您按下按钮时,它应该调用会发出警报消息的函数。所以在警报之后放置
stylevisible
property 。你可以使用它来实现
希望这会有所帮助。很高兴能帮助你
when you press the button so it should call function that will alert message. so after alert put
style visible
property .you can achieve it using
Hope this will help . Happy to help
如果您不使用 jQuery,我建议您使用它。如果你这样做,你会想做类似的事情:
If you are not using jQuery I would suggest using it. If you do, you would want to do something like:
这就足够了
this will be enough
您可以使用此代码:
You can use this code: