当我使用 ajax 提交包含具有“maxlength”属性的文本字段的表单时,我收到一个 javascript 错误:Uncaught SyntaxError: Unexpected token u (jquery-1.9.1.min.js:3)
如果我删除 maxlength 属性,一切运行正常。
我的 HTML 将我的页面精简到最低限度以复制问题:
<html>
<head>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.js"></script>
<script src="/Scripts/jquery.unobtrusive-ajax.js"></script>
<script src="/Scripts/jquery.validate.js"></script>
<script src="/Scripts/jquery.validate.unobtrusive.js"></script>
</head>
<body>
<form action="#" data-ajax="true" id="form0" method="post">
<input id="deposit" name="numberValue" type="text" class="despositInput" maxlength="8" value="1000">
<input type="submit" value="go">
</form>
</body>
</html>
无法弄清楚我做错了什么 - 也许来自 Visual Studio 的模板提供的 jquery 脚本不兼容?我会很感激任何帮助,谢谢。