Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
windows.location.href私は次のようなパス値を持っています
windows.location.href
window.location.href = 'index.html#one?narrat='+narration;
今、私はページからこの値を取得したいのです"index"が、どのように.
"index"
インデックスページでこの値を取得するにはどうすればよいですか?
この特定の質問では、これにより次の値が得られますnarat...
narat
var narat = location.href.substr(location.href.search("\\?")).split("=")[1];
またはさらに簡単に...
var narat = location.href.split("narat=")[1];
クエリ文字列にさらに変数を追加する場合は、別の方法で解析する必要があります。