我正在尝试在javascript文件中读取查询参数。
代码 -
的index.html
<!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
,但它正在提供undefined
,因为它从网址读取并且网址提供index.html
文件
答案 0 :(得分:0)
windows.location.href
将为您提供在浏览器地址栏中看到的地址。
虽然您可以解析DOM并找出您需要的内容,但当然不建议您在代码中获取该查询参数。
编辑:发现同样的问题 - Get the query string on the called javascript file