我正在应用javascript,但它会触发错误:
**missing ; before statement**
String str = document.location.href;
alert(str);
str.replace( "/blogs/-/blogs", "blogs" );
您的任何建议表示赞赏。
答案 0 :(得分:7)
更改
String str = document.location.href;
到
var str = document.location.href;
您不会使用JavaScript中的类型声明变量,但使用var
关键字。