Skip to content

Instantly share code, notes, and snippets.

@froop
Created February 18, 2015 12:30
Show Gist options
  • Save froop/46389c2d0ea36968c33f to your computer and use it in GitHub Desktop.
Save froop/46389c2d0ea36968c33f to your computer and use it in GitHub Desktop.
[JavaScript] URLの親階層を取得
function getParentURL(url) {
return url.replace(/[^/]*$/, "");
}
var url = location.href;
document.write(url + "<br>");
document.write(getParentURL(url) + "<br>");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment