var str="C:\Documents and Settings\dell\桌面\guanxi4.bmp"
我只需要 guanxi4.bmp 用js 怎样截取?
------解决方案--------------------
var tempstr=str.replace(/(\s*$)/g, "");
var tempstr=tempstr.split("\");
var aidstr=tempstr[tempstr.length-1];
var str=aidstr.substring(0,aidstr.length-2);
alert(str);