点击时出现意外的令牌错误

时间:2017-11-02 04:28:39

标签: html onclick syntax-error

当我在html视图中设置onclick for button时:

CHAR(16)

获取错误:未捕获的SyntaxError:无效或意外的令牌。有什么问题??

2 个答案:

答案 0 :(得分:0)

您只需要在onclick="methodName(parameters)"中使用方法名称,在此方法中,您可以编写逻辑来重定向用户或任何其他操作。

reference

答案 1 :(得分:0)

将您的代码更改为此代码,它可能有效:

 <input type ="button" value="Install" onclick="location.href='@Url.Action(`deploy`,`DeployController`)'">