自動(dòng)識(shí)別網(wǎng)頁(yè)文件類(lèi)型
發(fā)布時(shí)間:2008-12-20 閱讀數(shù): 次 來(lái)源:網(wǎng)樂(lè)原科技
要完成此效果需要兩個(gè)步驟
第一步:把如下代碼加入到區(qū)域中
<script LANGUAGE="JavaScript">
</script>
第二步:把如下代碼加入到區(qū)域中
<script LANGUAGE="JavaScript">
if (isphtml) {
document.write("這是一個(gè) .phtml 文件!");
}
else if (isshtml) {
document.write("這是一個(gè) .shtml 文件!");
}
else if (ishtml) {
document.write("這是一個(gè) .html 文件!");
}
else if (ishtm) {
document.write("這是一個(gè) .htm 文件!");
// Include the generic .htm last because if tested
// first, it would be true for all the file types above
}
else {
document.write("無(wú)法識(shí)別該類(lèi)文件.");
}
</script>