<script language="javascript" type="text/javascript" defer="defer">
javascript:(function(){var D=document; F(D.body); function F(n){var u,r,c,x; if(n.nodeType==3){ u=n.data.search(/"S{10}/); if(u>=0) { r=n.splitText(u+10); n.parentNode.insertBefore(D.createElement("WBR"),r); } }else if(n.tagName!="STYLE" && n.tagName!="SCRIPT"){for (c=0;x=n.childNodes[c];++c){F(x);}} } })();
</script>

 

该段代码放在所要自动换行的DIV下面就可以实现自动换行

 

 

去掉链接样式虚框
a,area { blr:expression(this.onFocus=this.blur()) } /* for IE */
:focus { -moz-outline-style: none; } /* for Firefox */ 


 

让iframe自动适用高度JS代码
function SetCwinHeight(){ var bobo=document.getElementById("bobo"); //iframe id if (document.getElementById){    if (bobo && !window.opera){     if (bobo.contentDocument && bobo.contentDocument.body.offsetHeight){      bobo.height = bobo.contentDocument.body.offsetHeight+20;     }else if(bobo.Document && bobo.Document.body.scrollHeight){      bobo.height = bobo.Document.body.scrollHeight+20;     }    } } }

<iframe id="bobo" onload="Javascript:SetCwinHeight()" frameborder="0" scrolling="no" src="a.htm" allowtransparency="true"></iframe>