Jam*_*123 3 javascript ajax asp.net-mvc jquery partial-views
我通过ajax调用html()加载局部视图.我可以在chrome javascript debug中看到response有<form>标签.但当它加载到源时,它正在消失.除了标签之外我还可以使用html.
我正在另一个标签下加载.我不知道这里有什么问题?
var HandleGetEditPhone = function (response) {
if (response !== "") {
$('#DivPhoneContainer').html(response);
}
Run Code Online (Sandbox Code Playgroud)
}