提交 3a2b048a 编写于 作者: D Devil

编辑器视频+文件管组件删除错误修复

上级 7bfd8af2
......@@ -796,7 +796,7 @@
if(!confirm("确定要删除吗?")) return;
var url = editor.getOpt("serverUrl");
var join = (url.indexOf('?') == -1) ? '?' : '&';
$.post(url + join+"?action=deletefile", { "id": del.attr("data-id") }, function(response) {
$.post(url + join+"action=deletefile", { "id": del.attr("data-id") }, function(response) {
if (response.code == 0)
{
del.parent().remove();
......
......@@ -344,7 +344,7 @@
if(!confirm("确定要删除吗?")) return;
var url = editor.getOpt("serverUrl");
var join = (url.indexOf('?') == -1) ? '?' : '&';
$.post(url + join+"?action=deletefile", { "id": del.attr("data-id") }, function(response) {
$.post(url + join+"action=deletefile", { "id": del.attr("data-id") }, function(response) {
if (response.code == 0)
{
del.parent().remove();
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册