javascriptファイルでクエリパラメータを読み取ろうとしています。ファイルパスからクエリパラメータを読み取る
コード -
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chat App List</title>
</head>
<body>
<div id="app"></div>
<script src="bundle.js?cid=vivek"></script> // I am trying to read value of cid in bundle.js file
</body>
</html>
はこれまでのところ、私はバンドルファイルにwindow.location.href
を使用してみましたが、それはURLから読み込み、URLがindex.html
ファイル
undefined
を与えているのindex.html
どのクエリパラメータ以前尋ねた同じ質問を見つけましたか? – d4rty
これをチェックしてくださいhttp://stackoverflow.com/questions/4716612/how-do-i-get-query-value-from-script-path – GBnewbie
'script'タグの参照を取得し、その' src 'property – mr5