使用链接隐藏元素
我有一个包含两张图片和一些文本的网站。我需要对其进行编码,以便它在加载时显示文本,但是当单击链接时,文本消失并出现图像。当单击不同的链接时,会出现另一个图像。这可能需要 javascript/jquery。我已经研究过如何更改课程,以便它确实显示:无,但我无法让它工作。谢谢。这是一个模型:http://amosjackson.com/index
I have a site with two images and some text. I need to code it so it shows the text on loading, but when a link is clicked, the text disappears and an image appears. And when a different link is clicked, the other image appears. This probably needs javascript/jquery. I have researched about changing the class so it does display:none but I cannot get it to work. Thanks. this is a mockup: http://amosjackson.com/index
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将
hide()
和show()
与click
事件结合使用。Use
hide()
andshow()
coupled with theclick
event.要使用 JQuery,您必须从 http://jquery.com/ 下载它,并将其放在站点中您想要的位置,然后你必须将其导入到你想要使用它的页面中。
将其放入页面头部:
将
href=""
更改为href菜单链接中的 ="javascript:void(0)"
。在 CSS 中放置此类:
最后在名为 contact 和 tardis 的
DIV
上设置invisible
类。To use JQuery you have to download it from http://jquery.com/, put it where you want in your site, then you have to import it in the page where you want to use it.
Put this in your page head:
<script src="/path/to/jquery/jquery-x.x.x.min.js"></script>
Change
href=""
tohref="javascript:void(0)"
in your menu links.In your CSS put this class:
Finally set the
invisible
class onDIV
s named contact and tardis.