asp.net里面,html页面用js向后端service传值后,怎样在同一页面的js中接收返回值呢
用ajax。
具体怎么写
@冰蓝de回眸:
$.ajax({
type: "GET", url: "地址",
data: "{name:name}",
contentType: "application/json; charset=utf-8",
dataType: "json",
success: function (data)
{ 执行成功后data为返回结果},
error: function (msg) { alert(msg);///错误信息 } });
@一只小小小的菜鸟 好的,谢谢