子页面中:
//listy页面,获取页面的高度。适合需要返回
window.onload = function() {
parent.document.getElementById("xztwo-iframe").style.height = document.body.clientHeight + "px";
};
//详情页面。获取滚动条高度
window.onload = function() {
parent.document.getElementById("xztwo-iframe").style.height = document.body.scrollHeight + "px";
};
parent.document.getElementById("xztwo-iframe").style.height = document.body.scrollHeight + "px";
};