点标题时下方显示对应内容
一个页面有标题和内容,怎么再另一个页面显示这个页面的标题,当我点标题时,内容自动显示在标题下方。要怎么弄呀。本来初学者,请问有什么例子可以参考的么?
------解决方案--------------------http://www.google.com.hk/search?hl=zh-CN&q=html+target&hl=zh-CN&sourceid=cndr
http://www.google.com.hk/search?hl=zh-CN&newwindow=1&safe=strict&tbo=d&q=asp.net+hyperlink+target&btnG=Google+%E6%90%9C%E7%B4%A2
------解决方案--------------------html css自己写
----
<div class="title">这是标题</div>
<div class="content">这是内容</div>
jq 根据需要的效果可以有.toggle(),.slideToggle(),.fadeToggle()等等
----
$(".title").click(function(){$(this).next().toggle();});
------解决方案--------------------
如果只考虑点击标题内容伸展而不考虑收缩的话用超链接也是可以的。
<a href='url' target='contentbody'>
<iframe id='contentbody'>
这样就行了。