每个循环ASP.NET MVC中的$ .post

时间:2009-11-14 17:32:34

标签: jquery

有一些简单的jquery我尝试按下按钮执行。由于某种原因,它无法正常工作。它将第一个元素“发布”为“可编辑”类,但不包含任何其他元素。我在DOM中有大约9个元素应该循环。

我在每个帖子请求时看了一下firebug,就像我说第一个没问题,但其余的回来了'500内部服务器错误'。

以下是我的代码,这里有什么想法吗?

$(".editable").each(function() {
            if (this.id != '') {
                //save content of each item
                $.post("/DynamicContent/SaveContent", { hid: this.id, content: $(this).html() }, function(data) {
                    alert(data);
                });

            }
        });

1 个答案:

答案 0 :(得分:0)

你可能会在发布未编码的html时收到HttpRequestValidationException。见How to avoid HttpRequestValidationException in ASP.NET MVC rendering the same view which caused the exception