巧用網頁顯示硬碟內容

feng19821209發表於2006-10-25
        您聽說過網頁也能用來顯示硬碟內容嗎?您肯定不信,因為大多數情況下,我們都是通過“我的電腦”和“資源管理器”來瀏覽硬碟資料。現在就讓我們來看看如何用下面一小段“神奇”的網頁程式碼實現硬碟E盤資料的顯示功能。你也一定等急了,很想知道這一切是如何發生的。其實非常簡單,只需在網頁的<head></head>中加入如下網頁原始碼即可實現。相信我,你也能做到的。

以下是引用片段:
<script language=javascript>
<!--//EAB22AC3-30C1-11CF-A7EB-0000C05BAE0B
if (navigator.appName=='Microsoft Internet Explorer') {
document.write('<h3>E盤內容如下:</h3>')
document.write('<object id="browserlcons" classid="clsid:8856F961-340A-11D0-A96B-00C04FD705A2" align="baseline" border="4" width="600" height="300">')
document.write('<param name="Location" value="e:">')
document.write('<param name="AlignLeft" value="1">')
document.write('<param name="AutoSize" value="0">')
document.write('<param name="AutoSizePercentage" value="100">')
document.write('<param name="AutoArrange" value="0">')
document.write('<param name="NoClientEdge" value="false">')
document.write('<param name="ViewMode" value="2">')
document.write('</object>')
}
//-->
</script>
document.write('<param name="Location" value="e:">') ”語句,如果我們想顯示硬碟中的C盤、D盤內容的話,只需將語句中的“e”改換成相應的“c”、“d”即可。
         其實真正的實現技巧在於程式碼中的“document.write('<param name="Location" value="e:">') ”語句,如果我們想顯示硬碟中的C盤、D盤內容的話,只需將語句中的“e”改換成相應的“c”、“d”即可。
 
 
 

相關文章