「JavaScript」window.location.pathnameを使うサンプル

構文
var pathname = window.location.pathname;
または var pathname = location.pathname;
使用例
htmlコード
<button onclick="getLocPathName();">test</button>
<div>pathname: <span id="pathId"></span></div>
JSコード

function getLocPathName() {
    document.getElementById( "pathId" ).innerHTML = window.location.pathname;
}

 

JavaScript

Posted by arkgame