|
<!-- 网页特效代码由[中国WEB开发者网络:http://www.ChinaWebDev.com]提供! --> <!-- 要实现此效果需要 1 个步骤: -->
<!-- 第 1 步: --> <!-- 把下面的代码加到<BODY></BODY>区域中: -->
<script>
function aa()
{
a=window.open('about:blank','','width=300;height=300');
tt="<img src='../images/624/4482F57A8568B9A7132AFF252803DDFF.JPG'>看见没有,我出来了!</img>"
a.document.write("<input type='button' value='对父窗口操作' onclick='window.opener.dd.innerHTML=\"<img src=../images/624/4482F57A8568B9A7132AFF252803DDFF.JPG>看见没有,我出来了!</img>\"'>");
a.document.close;
}
</script>
<a href="#" onclick="aa()">点击试试看</a>
<div id="dd"></div>
|