iframe 动态替换页面

主要标签为iframe 实现。setHeight函数自己写的用于页面 iframe JS动态设置高度。

<iframe id="dizhi" marginwidth=0 marginheight=0 onload='setHeight(this);' src="index_1.html" frameborder="none"
			 scrolling="no">
			</iframe>

js 实现代码 加200px 是我自己页面盒子有问题 必须加点才合适,使用应该不加。

// 顶部指定位置
function setHeight(el) {
	el.style.height = el.contentWindow.document.body.offsetHeight + 200 + 'px';
	console.log("has changed! the lenght!");
};

// 更换 页面
function btnclick(x) {
	console.log(x);

	$("#dizhi").attr("src", x + ".html");
	$("html,body").animate({
		scrollTop: $("#dizhi").offset().top
	}, 300);
	console.log(" btnclick  调用 更换页面!");
};

顶部指定位置

//获取子页面对象
var childWindow=$("#dizhi")[0].contentWindow;
	// 调用子页方法函数
	childWindow.childBtnclick();
	// 调用子页面变量
	childWindow.varName01;

子页面调用

//获取父页面
	var parentWindow=window.parent;
	// 调用父页面有参函数
	parentWindow.btnclick(x);
	// 调用父页面变量
	parentWindow.Varparent;
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值