DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript基礎知識 >> js根據文件路徑獲取文件後綴的方法
js根據文件路徑獲取文件後綴的方法
編輯:JavaScript基礎知識     

<script>
//取文件後綴名
function GetFileExt(filepath) {
if (filepath != "") {
var pos = "." + filepath.replace(/.+\./, "");
return pos;
}
}
//取文件名不帶後綴
function GetFileNameNoExt(filepath) {
if (filepath != "") {
var names = filepath.split("\\");
var pos = names[names.length - 1].lastIndexOf(".");
return names[names.length - 1].substring(0, pos);
}
}
//取文件全名名稱
function GetFileName(filepath) {
if (filepath != "") {
var names = filepath.split("\\");
return names[names.length - 1];
}
}
</script>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved