asp 网页 iframe 子页如何向父页回传参数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了asp 网页 iframe 子页如何向父页回传参数相关的知识,希望对你有一定的参考价值。
我想点击iframe子页的链接,回传参数给父页的一个表单文本框
请教大家如何实现,给个提示或最好能给个例子!谢谢
QQ:463981967
谢谢,急
方法一:
用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.
<?php if(!$post->post_parent){ // will display the subpages of this top level page $children = wp_list_pages("title_li=&child_of=".$post->ID."&echo=0"); }else{ // diplays only the subpages of parent level //$children = wp_list_pages("title_li=&child_of=".$post->post_parent."&echo=0"); if($post->ancestors) { // now you can get the the top ID of this page // wp is putting the ids DESC, thats why the top level ID is the last one $children = wp_list_pages("title_li=&child_of=".$ancestors."&echo=0"); // you will always get the whole subpages list } } if ($children) { ?> <ul> <?php $parent_link = get_permalink($post->post_parent); $parent_title = get_the_title($post->post_parent); if ($post->post_parent) { echo "<li><a href='".$parent_link."'>".$parent_title."</a></li>"; } else { echo "<li class='current_page_item'><a href='".$parent_link."'>".$parent_title."</a></li>"; } ?> <?php echo $children; ?> </ul> <?php } ?>
以上是关于asp 网页 iframe 子页如何向父页回传参数的主要内容,如果未能解决你的问题,请参考以下文章