Possible to get query parameters of the <script> src JavaScript URL?
问题 As an example, I have the following html: <body> <script src="code.js?q=xyz"></script> </body> I want to be able to read the q=xyz query parameter from within code.js . I tried: console.log(window.location.href) But it gives me the html document's URL, not code.js 's URL (I could then parse the URL for the query parameters). Is there any way to get an imported JavaScript file's query parameters from within that JavaScript? I know I could read the query parameters on a server and then send