0

嗨,每当我尝试在 html 中创建按钮时,我都会收到此错误。错误:“未终止的字符串常量”这是代码:

<input id="topImageNavigationPreviousButton" type="button" value="Previous" class="inline" onclick="location.href='@Url.Action("Index", "Home", new { id = (id + (startIndex - endIndex) + 1) })'"/>

我正在使用 MVC 4 Razor。如果您希望我发布更多我的代码,请告诉我:)

(PS:有人可以告诉我如何换行该代码吗?试过了<br/>

4

1 回答 1

0

未终止的字符串常量是因为缺少右引号。很确定您在语法上犯了一些错误。

onclick="location.href='@Url.Action("Index", "Home", new { id = (id + (startIndex - endIndex) + 1) })'"
于 2012-10-30T11:54:25.313 回答