如何查找当前页面网址(例如" index.html")?

时间:2015-06-24 11:59:14

标签: javascript regex window.location

使用字符串http://www.example.com/section_one/index.html如何使用RegExp返回index? P.S。:也接受返回index.html

2 个答案:

答案 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];