如何找到当前页面 url(如 "index.html")?
How to find current page url (like "index.html")?
对于字符串 http://www.example.com/section_one/index.html
我如何 return index
使用 RegExp?
P.S.: 返回 index.html
也被接受。
您不需要为此使用正则表达式。很简单:
var url = document.URL;
var currentPage= url.split("/").pop();
您可以尝试以下方法。
Fiddle
var url = "http://www.example.com/section_one/index.html";
var filename = url.match(/[^\/]+$/)[0];
对于字符串 http://www.example.com/section_one/index.html
我如何 return index
使用 RegExp?
P.S.: 返回 index.html
也被接受。
您不需要为此使用正则表达式。很简单:
var url = document.URL;
var currentPage= url.split("/").pop();
您可以尝试以下方法。 Fiddle
var url = "http://www.example.com/section_one/index.html";
var filename = url.match(/[^\/]+$/)[0];