使用字符串http://www.example.com/section_one/index.html
如何使用RegExp返回index
?
P.S。:也接受返回index.html
。
答案 0 :(得分:5)
您不需要使用正则表达式。它很简单:
var url = document.URL;
var currentPage= url.split("/").pop();
答案 1 :(得分:1)
您可以尝试以下操作。 Fiddle
var url = "http://www.example.com/section_one/index.html";
var filename = url.match(/[^\\/]+$/)[0];