单击按钮时出现的图像
如何在单击提交按钮时显示隐藏图像?
How do I make a hidden image appear when a submit button is clicked?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在单击提交按钮时显示隐藏图像?
How do I make a hidden image appear when a submit button is clicked?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(5)
你很幸运,我准备好了一个空白的 HTML 页面:
You were lucky I had a blank HTML page ready:
使用 jQuery:
Using jQuery:
下面是一个示例,
将图像隐藏在 css:
和 jquery:
中,并尽量避免使用内联 javascript,当您有一个大网站时,它会很混乱且难以维护。
Here's an example
hide the image in css:
with jquery:
and try to avoid inline javascript, it's messy and difficult to maintain when you have a big website.
这取决于你如何隐藏它。最简单的方法是将图像的类名从隐藏的类名更改为不隐藏的类名。
That would depend on how you are hiding it. The easiest way to do it would be to change the class name of the image from one that makes it hidden to one that does not.