如果iframe的子页面是一个frameset框架文件怎么获取frameset的内容高度

如果iframe的子页面是一个frameset框架文件怎么获取frameset的内容高度,第1张

那你可以在mainaspx初始化写上这样一句

function screeChange(){

windowparentdocumentgetElementById('rightFrame')rows="50,"+documentbodyscrollHeight+",100";

}

</script>

body里面加上:onload="screeChange()"

注意一定要在body里面或者它的后面初始化,不然获取不到内容高度

其中documentbodyscrollHeight获取mainaspx页面的实际文本高度,然后赋值给它的父窗体中的rightFrame的row值。。。

另外:<frame src="bottomhtm" id="bottomFrame" name="mainFrame" frameborder="0" scrolling="no" >

这个name值是不是写错鸟。。。。

另外在aspnet编程中。。。建议舍弃frameset 使用irame哈。。

1js控制iframe

<div id="dd">132</div>

<script>

var s = '<iframe src="javascript:documentopen();documentwrite(\'<script>alert(1);<\/script><div>test</div>\');documentclose();"></iframe>';

documentgetElementById("dd")innerHTML = s

</script>

<iframe id="tst" name="tst" ></iframe>

<script>

alert(2);

var cw = windowdocumentgetElementById('tst')contentWindow;

cwdocumentopen();

cwdocumentwrite('<script>alert("test")<' + '/script>');

cwdocumentwrite('<div>test</div>');

cwdocumentclose();

</script>

IE6,IE7,FF2下测试通过

2自适应高度

在id为"ifr"的iframe内容里写上js代码:

<script>

function resize(){

parentdocumentgetElementById('ifr')styleheight = documentbodyscrollHeight>300documentbodyscrollHeight:300+"px";

}

windowonload=resize;

windowonresize = resize;

</script>

就能控制id为"ifr"高度至少为300px

要是回答的内容有问题,或认为不妥,请发送百度消息给我,消息内容加上本页网址哦。。

·

//windowonresize表示窗口触发时间的时候执行

//两个函数,用闭包包裹起来()()

windowonload=function(){

(windowonresize=function(){

//获取可见宽度

var width=documentdocumentElementclientWidth-180;//180为左边的div的大小

//获取可见高度

var height=documentdocumentElementclientHeight-80;//80为头部的div的大小可自己修改

//如果有宽度就给值,

if(width>=0){

documentgetElementById('main')stylewidth=width+'px';

}

if(height>=0){

documentgetElementById('sidebar')styleheight=height+'px';

documentgetElementById('main')styleheight=height+'px';

}

})()};

扩展资料:

//设置iframe的高度

function resizeFrameHeight() {

$('tab_iframe')css('height', documentdocumentElementclientHeight - 118);

$('md-tab-content')css('left', '0');

}

windowonresize = function () {

resizeFrameHeight();

initScrollShow();

initScrollState();

}

几个办法,一是在iframe onload的时候计算并设置iframe高度,另一个是定期运行js函数来检查并设置iframe高度,有篇文章不错(>

你用jq的时候是在页面加载的时候就获取了,并不是点击的时候获取的。时机不对。

$('#btn2')click(function () {

var boxAheight = $("#frame_content")outerHeight(true);

alert(boxAheight);

})

我用的就是这段了

<script type="text/javascript">

function SetCwinHeight(obj) {

var cwin = obj;

if (documentgetElementById) {

if (cwin && !windowopera) {

if (cwincontentDocument && cwincontentDocumentbodyoffsetHeight)

cwinheight = cwincontentDocumentbodyoffsetHeight + 20; //FF NS

else if (cwinDocument && cwinDocumentbodyscrollHeight)

cwinheight = cwinDocumentbodyscrollHeight + 10; //IE

}

else {

if (cwincontentWindowdocument && cwincontentWindowdocumentbodyscrollHeight)

cwinheight = cwincontentWindowdocumentbodyscrollHeight; //Opera

}

}

}

</script>

<iframe id="id" name="name" frameborder="0" width="750px" scrolling="no"

onload="SetCwinHeight(this)"></iframe>

设置个背景给iframe也可也 在加载的时候

以上就是关于如果iframe的子页面是一个frameset框架文件怎么获取frameset的内容高度全部的内容,包括:如果iframe的子页面是一个frameset框架文件怎么获取frameset的内容高度、js写入的iframe自适应高度问题(急)、iframe在div中如何自适应高度等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/9517825.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-29
下一篇 2023-04-29

发表评论

登录后才能评论

评论列表(0条)

保存