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.
我目前有一个 jqGrid,它使用 editurl 编辑数据库中的数据。收到服务器回复后如何操作,例如检查更新是否成功,或者服务器返回的消息。
如果没有执行此操作的 jqGrid 函数,那么我该怎么做呢?
OP写道:
解决了。编辑行的 API 如下。 jQuery("#grid_id").jqGrid('editRow',rowid, keys, oneditfunc, succesfunc, url, extraparam, aftersavefunc,errorfunc, afterrestorefunc); 把你想要的函数放在 下aftersavefunc,并接受 2 个参数,row_id 和响应。响应是一个XMLhttpRequest对象。
解决了。编辑行的 API 如下。
jQuery("#grid_id").jqGrid('editRow',rowid, keys, oneditfunc, succesfunc, url, extraparam, aftersavefunc,errorfunc, afterrestorefunc);
把你想要的函数放在 下aftersavefunc,并接受 2 个参数,row_id 和响应。响应是一个XMLhttpRequest对象。
aftersavefunc
XMLhttpRequest