错误:遗漏;在javascript中声明之前

时间:2013-03-08 07:06:33

标签: javascript liferay-6

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

**missing ; before statement**

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

您的任何建议表示赞赏。

1 个答案:

答案 0 :(得分:7)

更改

String str = document.location.href;

var str = document.location.href;

您不会使用JavaScript中的类型声明变量,但使用var关键字。