我真的不明白为什么我在下面的代码(以粗体显示)中出现两次这个错误(Uncaught SyntaxError:Unexpected identifier),你能帮帮我吗?(我在两个不同的实例中运行它;一个作为函数,另一个作为简单代码以尝试进一步调试,但我真的不明白为什么会同时出现这两个错误)。我也在 Edge、Firefox 和 Googlechrome 上尝试过。
function CheckUrlParams(){
//Get the URL as String
var **sPageURL = window.location.search.substring(1);**
console.log(sPageURL);
//Split the URL string into an array
var sURLVariables = sPageURL.split("&");
console.log(sURLVariables);
for (var i = 0; i < sURLVariables.length; i++){
var sParameterName = sURLVariables[i].split("=");
console.log(sParameterName);
if (sParameterName[0] == "WMV"){
console.log(sParameterName);
return sParameterName[1];
}
}
**}**