0

我正在应用 javascript,但它会引发错误:

**missing ; before statement**

String str = document.location.href;
alert(str);
str.replace( "/blogs/-/blogs", "blogs" );

您的任何建议表示赞赏。

4

1 回答 1

7

改变

String str = document.location.href;

var str = document.location.href;

您不用 JavaScript 中的类型而是用var关键字声明变量。

于 2013-03-08T07:07:23.600 回答