更改 HTML 页面图标?
我有一个网页。我想更改按钮按下时的图标(这足以让我理解,但如果您能描述一种在单击按钮后为图标设置动画的方法,我会很高兴)。
I have a webpage. I want to change the icon on button down (this would be enough for me to understand but I'd be glad if you'd describe a way to animate icon after button click).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您确实想更改图标,jball 的解决方案将不起作用,因为浏览器似乎不会注意到现有
发生更改。您需要删除现有标签并插入一个新标签:
注意,这假设您的原始 favicon 链接具有 id
favicon
。If you do want to change the favicon, jball's solution will not work, because browsers don't seem to notice when an existing
<link>
changes. You need to remove the existing tag and insert a new one:NB This supposes that your original favicon link has the id
favicon
.http://api.jquery.com/click/
检查此点击事件 。在该演示中,正在使用删除类。
addClass 函数就在那里。
如果需要,您可以使用 css 本身更改图像。
显示() 隐藏();函数用于显示隐藏 div 。你也可以使用这些
http://api.jquery.com/click/
check this for click event . In that demo , remove class is using.
addClass function is there.
You can change image using css itself if you want.
show() hide(); functions are there to show hide divs . you can use these too