//脚本如何访问<object>里包含的页面
<object id=mm data="t.htm" style="width: 200px; height: 160px;" type="text/x-scriptlet"></object>
<input type=button value=html onclick="alert(mm.html)">
<input type=button value=text onclick="alert(mm.text)">t.htm:
<script >
public_description=new Editor
function Editor()
{
  this.put_html=function(v){document.body.innerHTML=v};
  this.get_html=function(){return document.body.innerHTML};
  this.put_text=function(v){document.body.innerText=v};
  this.get_text=function(){return document.body.innerText};
}
</script>