http://www.baidu.com")这样可以实现你说的,输入的网址,使iframe的url改变,页面中要有reseturl函数实例:请在地址来输入:javascript:reseturl("
http://www.baidu.com")然后回车
我主要是要在iframe中动态传入参数,然后在另外一个页面接受该参数,根据接受的参数不同做不同的处理。但是刚刚开始要有默认值,到了另一个页面总是默认的值 这个是生成的iframe的脚本function ExportExcel(falg){var str="<iframe src='Upload.aspx?falg=2' frameborder='0' scrolling='no' style='width: 340pxheight: 20pxbackground: #E4E4E4' id='Export'></iframe><br/>"str+="<a href='javascript:onhtmlhideExportExcel()'>取消上传</a>"$("#ExportExcel").html(str)} //动态给iframe传入参数function setiframe(flag){var obj=$("#Export")obj.src="Upload.aspx?falg="+flag} 上面是设置动态设置iframe的但是转到别的地方后又还原了参数<div id="ExportExcel" style="position: absolutetop: 60%left: 30%border: dashed 1px #000 display: nonepadding: 5px 10pxbackground: #80e0f1"> <script type="text/javascript">在one.htm的<body>里面加入:onload="parent.window.document.all.aaa.height=document.all.bd.clientHeight"
one.htm的所有内容用一个表格嵌起来,表格的ID设置为bd,然后,iframe的ID设置为aaa
parent.window.document.all.aaa.height:aaa也就是iframe的ID
document.all.bd.clientHeight:bd也就是one.htm最外层表格的ID
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)