URLのハッシュ記号とそれに続くテキストを削除するにはどうすればよいですか?例えばハッシュ記号とURLの後のすべてのテキストを削除します
、URLは、私は全体#contentテキストを削除したいhttp://www.website.com/home#content
です。
URLのハッシュ記号とそれに続くテキストを削除するにはどうすればよいですか?例えばハッシュ記号とURLの後のすべてのテキストを削除します
、URLは、私は全体#contentテキストを削除したいhttp://www.website.com/home#content
です。
window.location.href.split('#')[0]
これを試すことができます。
コードハッシュは削除されません。ハッシュのないURLのみを返します。 – Mohammad
history.pushState( ''、document.title、window.location.pathname); –
pushStateが機能するかどうか確認してください。 –
私は、これはあなたが探しているものだと思う...(つまり、あなたがそのHREFでハッシュを持っているハイパーリンクをクリックすると、あなたはハッシュを取り除くと、残りのURLにナビゲートしたい?)
<!DOCTYPE html>
<html>
<body>
<a id="someLink" href="/some_page#some_hash">Click Me</a>
<script src="http://code.jquery.com/jquery-2.2.4.min.js"></script>
<script>
$('#someLink').click(function (e) {
// Prevent normal navigation to the href (the full URL with hash)
e.preventDefault();
// Navigate to "/some_page" (everything to left of the first "#")
document.location = this.href.split('#')[0];
});
</script>
</body>
</html>
'document.location.hash =" "'そして、それは* "ハッシュ" *と呼ばれます。 – adeneo
ハッシュを取得: http://stackoverflow.com/questions/298503/how-can-you-check-for-a-hash-in-a-url-using-javascript、それを削除:http:// stackoverflow .com/questions/1397329/javascript-without-page-refreshを使ってハッシュからウィンドウの位置を削除する方法 – GlabbichRulz
[window.location(URL)からハッシュを削除する方法ページリフレッシュのないJavaScript?](https://stackoverflow.com/questions/1397329/how-to-remove-the-hash-from-window-location-url-with-javascript-without-page-r) – PayteR