asp 网页 iframe 子页如何向父页回传参数

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp 网页 iframe 子页如何向父页回传参数相关的知识,希望对你有一定的参考价值。

我想点击iframe子页的链接,回传参数给父页的一个表单文本框

请教大家如何实现,给个提示或最好能给个例子!谢谢

QQ:463981967
谢谢,急

a.asp文件中有个iframe,iframe的src指向b.asp文件,b.asp文件中有个form,form的action是提交给c.asp,请问如何将c.asp中的var1、var2、var3几个变量的值传回到a.asp中?

方法一:
用js,在父窗口a.asp建立变量,然后在c.asp中写js代码将变量传回父窗口.
parent.var1=var1
parent.var2=var2
parent.var3=var3

方法二:
如果不懂js的话就用session吧
在c.asp中
session("var1")=var1
session("var2")=var2
session("var3")=var3
通过session将变量的值传回a.asp
参考技术A iframe.parent.form1.name.value="123"; 参考技术B 学习

WordPress子页和父页菜单

Shows the sub pages of a parent page, and also the parent page as a link.
  1. <?php
  2. if(!$post->post_parent){
  3. // will display the subpages of this top level page
  4. $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0");
  5. }else{
  6. // diplays only the subpages of parent level
  7. //$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0");
  8.  
  9. if($post->ancestors)
  10. {
  11. // now you can get the the top ID of this page
  12. // wp is putting the ids DESC, thats why the top level ID is the last one
  13. $ancestors = end($post->ancestors);
  14. $children = wp_list_pages("title_li=&child_of=".$ancestors."&echo=0");
  15. // you will always get the whole subpages list
  16. }
  17. }
  18. if ($children) { ?>
  19. <ul>
  20. <?php
  21. $parent_link = get_permalink($post->post_parent);
  22. $parent_title = get_the_title($post->post_parent);
  23. if ($post->post_parent) {
  24. echo "<li><a href='".$parent_link."'>".$parent_title."</a></li>";
  25. } else {
  26. echo "<li class='current_page_item'><a href='".$parent_link."'>".$parent_title."</a></li>";
  27. }
  28. ?>
  29. <?php echo $children; ?>
  30. </ul>
  31. <?php } ?>

以上是关于asp 网页 iframe 子页如何向父页回传参数的主要内容,如果未能解决你的问题,请参考以下文章

如何让iframe动态改变,单是却不刷新父页

在Wordpress中打开父页/子页时显示子页

Wordpress-检查子页是否属于父页

WordPress子页和父页菜单

WordPress父页和子页摘录

Wordpress:父页和子页中的标题