请问
在一个页面中、能在A iframe中点击提交按钮以后、B iframe自动刷新么
如下图

解决方案 »

  1.   

    <form target="frame c">
      

  2.   

    这个实现不了、加上target 后C IFRAME 会显示成A iframeC iframe是用于显示结果的、当我在A iframe中点击提交以后要求实时刷新C IFRAME中的查询结果
      

  3.   

    a里提交后,页面输出js 
    framec.history.go(0);
      

  4.   

    这个会从缓存里读的啊、我要实时从数据库中读取出来的数据、也就是当A iframe点击提交以后会向数据库中插入一条数据、要在C iframe中实时查询出来并显示在 C iframe中
      

  5.   

    如果怕缓存,就直接修改framec.location,在location的url地址后面加上时间戳防止缓存。
      

  6.   

    简单啊parent.document.getElementById('iframe_B').src='url';这样就行了啊