标签: javascript jquery
例如,我正在执行“index.html”
这样的事情:
var filename = $.getFileName(); alert(filename);
是否有可能在警报中获得“index.html”?
答案 0 :(得分:1)
var name = window.location.href.substr(window.location.href.lastIndexOf("/")+1);