“<”?xml version = \“1.0 \”encoding = \“utf-8 \”?> “<”string xmlns = \“http://xyz.org/ \”> 你好,世界 “<”/串GT;
我想得到Hellow World。那该怎么办?
答案 0 :(得分:0)
如果您使用的是jquery:
$(document).ready(function() {
$("#Result").click(function() {
$.ajax({
type: "POST",
url: "Default.aspx/MyWebMethod",
data: "{}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function(msg) {
alert(msg.d);
}
});