我使用div标签将网页分为2个部分。
我想要的是左侧div的锚标签应该在右侧div中点击链接时显示内容。如果有或没有javascript我怎么办?
答案 0 :(得分:0)
看看这个:
http://www.w3schools.com/html/html_iframe.asp
和
http://www.w3schools.com/html/tryit.asp?filename=tryhtml_iframe_target
我认为这很简单......
无论如何,这是一个很好的衡量标准的例子:
在你要填充的div中放置一个iframe,如下所示:
<iframe
src="url_of_whatever_stuff_you_want_to_populate_it_with_initially"
name="my_iframe>
</iframe>
然后为每个锚添加目标属性:
<a target = "my_iframe" etc etc...
答案 1 :(得分:-1)
除非你想使用不明确的,不直观的CSS样式,否则不可能没有Javascript。
见这里:How to hide an anchor tag by href #id using css
最好使用简单的onClick事件来显示和隐藏这些div。