六狼论坛

 找回密码
 立即注册

QQ登录

只需一步,快速开始

新浪微博账号登陆

只需一步,快速开始

搜索
查看: 117|回复: 0

iframe之间传值

[复制链接]

升级  4.67%

62

主题

62

主题

62

主题

举人

Rank: 3Rank: 3

积分
214

最佳新人

 楼主| 发表于 2013-2-7 20:54:32 | 显示全部楼层 |阅读模式
Problem:
AA.html中有一ID为: content 的文本域(textarea),
BB.html中的一段js来给AA.html中ID为: content 的文本域赋值

solution:
1, main.html
   <body>
   <iframe ID="AAA" name="AAA" src="AA.html" frameBorder="0"      marginHeight="0" marginWidth="0" scrolling="No" style="height:265px;width:814px;"></iframe>

<iframe ID="BBB" name="BBB" src="BB.html" frameBorder="0" marginHeight="0" marginWidth="0" scrolling="No" style="height:265px;width:814px;"></iframe>
   
  </body>

2,AA.html
<body>
   <form method="post" name="form1">
    <p><textarea rows="5" name="content" id="content" cols="73"></textarea></p>
   </form>
  </body>

3,BB.html
<body onload='window.parent.AAA.form1.content.value="data from BB";'>
     <br>
  </body>
您需要登录后才可以回帖 登录 | 立即注册 新浪微博账号登陆

本版积分规则

快速回复 返回顶部 返回列表