框架总页叫iframe.html
代码:
<script>
function changeWin(){
var left_cols=parent.forum.cols;
    left_cols=left_cols.substr(0,3);
    left_cols-=20;
    alert(left_cols);
    parent.forum.cols=left_cols+",*";
}
</script>
<FRAME marginHeight=0 marginWidth=0 name=forumtop scrolling=no src="indextop.php" noresize>
<FRAMESET cols="175,*" name=forum>
<FRAME name=menu src="left.html">
<FRAME name=list src="main.html" noresize>
</FRAMESET>
</FRAMESET>在main.html写上<a href="javascript:top.changeWin()">减20px</a>
就可以了!