需要准备的材料分别有:电脑、chrome浏览器、html文档。
1、首先,找到要运行的html文件。
2、右键html文件,选择“打开方式”,点击“Google Chrome”。
3、此时chrome浏览器成功运行了html文档,例如打印了“hello world!”。
1.<object>方式<object style="border:0px" type="text/x-scriptlet" data="import.htm" width=100% height=30></object>
2.Behavior的download方式
<span id=showImport></span>
<IE:Download ID="oDownload" STYLE="behavior:url(#default#download)" />
<script>
function onDownloadDone(downDate){
showImport.innerHTML=downDate
}
oDownload.startDownload(import.htm,onDownloadDone)
</script>