|
蓝森林 http://www.lslnet.com 2006年8月25日 8:28
急~如何让主页控制里面的IFRAME标签?
请问如何让主页控制里面的IFRAME标签?
就是点击一个连接,主页里的其它内容不变就是IFRAME标签里有内容改变。 |
这是别人告诉我的,我告诉你吧!
-----test.htm----
<html>
<body>
<a target="aa" href="h.htm?">pictupe 1</a><br>
<a target="aa" href="h.htm?">pictupe 2</a><br>
<iframe name="aa" href="h.htm">
</body>
</html>
-------h.htm------
<html>
<body>
<script>
document.write("<img src="+location.search.replace('?','')+">");
</script>
</body>
</html>
|
|