谁能告诉我为什么我在第二行得到一个错误,说“意外的字符串”,但是当我直接在我的视图上看到它时工作正常(我使用的是 MVC 3,并不是说它有什么不同):
function getUsers(processId) {
$.ajax({
url: "@Url.Action('GetProcessApprovers', 'Risk')",
data: { processId: processId },
dataType: "json",
type: "POST",
error: function () {
alert("An error occurred.");
},
success: function (data) {
var items = "<option value=\"\">-- Please select --</option>"
if (data != "") {
$.each(data, function (i, item) {
items += "<option value=\"" + item.Value + "\">" + item.Text + "</option>";
});
}
$("#ProcessOwnerId").html(items);
}
});
};