Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Jeditable 将一些 textarea 数据发布到服务器。当 ajax 发布由于某种原因(网络问题、服务器错误等)失败时,有必要让表单保持可见并保留用户输入的数据。可以用 Jeditable 做那件事吗?谢谢!
我没有 jeditable,但是通过阅读他们的文档,您似乎需要覆盖他们的 onerror 事件。
onerror: function (settings, original, xhr) { var error = eval('(' + xhr.responseText + ')'); //original.reset(); }