JavaScript传值

Posted on 2007-04-12 13:29 xh_blood 阅读(387) 评论(0)  编辑  收藏 所属分类: js

一,JavaScript传值,主要用到opener.document……

        例如:Trans_aa.htm,Trans_bb.htm

<html>

<head>
<script language="JavaScript" type="text/JavaScript">
<!--
//Made by 1st JavaScript Editor
//http://www.yaldex.com
//Come and get more (free) products

var neww;
  function azxfds(axzfds,axcfds,acxfds)
    {neww=window.open(axzfds,axcfds,acxfds);
neww.window.focus();
}
//-->
</script>

 

<title></title>

</head>

<body>
<form>
<input type="text" id="aa"><input type="button" onclick="javascript:azxfds('http://localhost/JavaScript/Trans_bb.htm','Yaldex','width=400,height=300')" value="调出bb.html">
</form>
</body>

</html>

 

<html>

<head>

<title></title>

</head>

<body>
<script language="javascript" type="text/javascript">
function Valid()
{
var Strbb=document.getElementById("bb").value;
opener.document.getElementById("aa").value=Strbb;

}
</script>
<form>
<input type="text" id="bb"> <input type="button"  value="确定" onclick="javascript:Valid();window.close();">
</form>
</body>

</html>