When I return a JSon value, i simply want to put a string inside an existing div
EDIT: Let me Rephrase this: I want my MVC controller to return a JSON object to the UpdateTarget specified in the MV开发者_如何学编程C AJAX call. Instead of returning "content".
Assume your JSON String looks like this:
var jobj = '{"name":"value"}';
and you have a div on the HTML with id mycontentdiv then
document.getElementById("mycontentdiv").innerHTML = jobj.name;
will take the "value" and place it in the div.
Without further details it is difficult to be more specific.
精彩评论