1

我遇到了问题,我遇到的问题Jquery 1.8.3IE8,在我打开网页时IE8出现下一个错误,我无法提交表单:

语法错误 Jquery 1.8.3.js Sintax 错误行:2 char:13575

我认为我的问题出在我的 javascript 上,但我不知道我缺少什么:

JavaScript网页_ _

提前致谢!:D

编辑

该网页适用于IE >= 10

4

1 回答 1

0

您的问题出现了,因为您的 function_form 输出对于 IE8 和其他浏览器是不同的。在 IE 中,您会得到这样的响应(错误 500,即 html):

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>500 Internal Server Error</title>
</head><body>
<h1>Internal Server Error</h1>
<p>The server encountered an internal error or
misconfiguration and was unable to complete
your request.</p>
<p>Please contact the server administrator,
 root@localhost and inform them of the time the error occurred,
and anything you might have done that may have
caused the error.</p>
<p>More information about this error may be available
in the server error log.</p>
<hr>
<address>Apache/2.2.15 (CentOS) Server at carlyleonline.scalahed.com Port 80</address>
</body></html>

然后它失败了: var datas = $.parseJSON(data.responseText);

另一方面,其他浏览器返回正确的 JSON:

{"errores": {"entidad": ["Este campo es obligatorio."], "fecha_nacimiento": ["Este campo es obligatorio."], "apellido_paterno": ["Este campo es obligatorio."], "carlyle_lic1": ["Seleccione al menos una licenciatura."], "celular": ["Proporcione un n\u00famero telef\u00f3nico."], "nombre": ["Este campo es obligatorio."], "email": ["Este campo es obligatorio."]}}

你能告诉我们你的逻辑,它决定响应应该是 json 还是 webserver 错误?

于 2013-07-16T14:45:36.867 回答