私は現在のURLを持っています:
http://www.test.com/p1234?utm_source=....
形式の URL を取得するにはどうすればよいですかhttp://www.test.php/p1234
私は javascript を使用していますdocument.URL
。結果はhttp://www.test.com/p1234?utm_source=....
私は現在のURLを持っています:
http://www.test.com/p1234?utm_source=....
形式の URL を取得するにはどうすればよいですかhttp://www.test.php/p1234
私は javascript を使用していますdocument.URL
。結果はhttp://www.test.com/p1234?utm_source=....
これは正しい答えです:
window.location.host + window.location.pathname;
あなたはこれを求めている:
var location = window.location.host + window.location.pathname;
ドキュメントを参照してください: https://developer.mozilla.org/en-US/docs/Web/API/Location