ifame 去滚动条
程序员文章站
2022-06-17 14:59:28
...
function changeframe()
{
var workspace = document.getElementById('workspace');
var navigator = getOs();
//让滚动条回到页面上方。
(document.documentElement && document.documentElement.scrollTop)?document.documentElement.scrollTop=0 : document.body.scrollTop=0;
if("Firefox" == navigator)
{
alert(workspace.height);
alert(workspace.width);
workspace.height=window.frames["workspace"].document.body.scrollHeight;
workspace.width=window.frames["workspace"].document.body.scrollWidth;
alert(workspace.height);
alert(workspace.width);
}
else
{
// alert(workspace.style.height);
// alert(workspace.style.width);
//alert('window.frames[workspace].document.body.scrollTop'+window.frames["workspace"].document.body.scrollTop);
alert('window.frames[workspace].document.body.scrollHeight'+window.frames['workspace'].document.body.scrollHeight);
alert('workspace.document.body.scrollHeight'+workspace.document.body.scrollHeight);
var height = window.frames['workspace'].document.body.scrollHeight;
// allPrpos(document.getElementById('content-container').style);
document.getElementById('regionB').style.height = height+100;
// allPrpos(document.getElementById('regionB').style);
workspace.style.height = height;
workspace.style.width=window.frames['workspace'].document.body.scrollWidth;
// allPrpos(workspace.style);
document.documentElement.scrollTop = 0;
alert(workspace.style.height);
alert(workspace.style.width);
}
}
function allPrpos(obj) {
var props = "";
for(var p in obj){
if(typeof(obj[p])=="function"){
obj[p]();
}else{
props+= p + "=" + obj[p] + "\t";
}
}
alert(props);
}
function getOs()
{
var OsObject = "";
if(navigator.userAgent.indexOf("MSIE")>0) {
return "MSIE";
}
if(isFirefox=navigator.userAgent.indexOf("Firefox")>0){
return "Firefox";
}
if(isSafari=navigator.userAgent.indexOf("Safari")>0) {
return "Safari";
}
if(isCamino=navigator.userAgent.indexOf("Camino")>0){
return "Camino";
}
if(isMozilla=navigator.userAgent.indexOf("Gecko/")>0){
return "Gecko";
}
}
但是如果iframe里面嵌套iframe我们该怎么办呢?请看附件
推荐阅读
-
宁夏大学211企业认可吗?高考有必要为了211去宁夏大学吗?
-
为了211去石河子大学值不值?石河子大学认可度高吗?
-
千万要考上*财经大学吗?去两财一贸不去985值吗?
-
c# textbox的滚动条总是指向最底端的简单解决方法
-
SQL学习笔记五去重,给新加字段赋值的方法
-
asp.net DataTable相关操作集锦(筛选,取前N条数据,去重复行,获取指定列数据等)
-
asp.net DataTable相关操作集锦(筛选,取前N条数据,去重复行,获取指定列数据等)
-
C# WinForm中Panel实现用鼠标操作滚动条的实例方法
-
可牛影像怎么去红眼?可牛影像去红眼教程
-
c# linq的差集,并集,交集,去重代码(分享)