欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

使用AJAX返回WebService里的集合具体实现

程序员文章站 2022-08-09 21:05:58
复制代码 代码如下: -------------------webservice1 ----------------------------- // 若要允许使用 asp....
复制代码 代码如下:

-------------------webservice1 -----------------------------
// 若要允许使用 asp.net ajax 从脚本中调用此 web 服务,请取消对下行的注释。
[system.web.script.services.scriptservice]
public class webservice1 : system.web.services.webservice
{
[webmethod]
public list<string> getlist()
{
list<string> list = new list<string>();
list.add("王一");
list.add("22");
list.add("河北");
return list;
}
}
--------------------htmlpage1.htm-----------------------
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<script src="js/jquery1.7.js" type="text/javascript"></script>
<script type="text/javascript">
$(function () {
$('#button1').click(function () {
$.ajax({
type: "post",
contenttype: "application/json",
url: "webservice1.asmx/getlist",
data: "{}",
success: function (result) {
var str = '';
for (var i = 0; i < result.d.length; i++) {
str += result.d[i];
}
$('#mydiv').text(str);
}
})
})
})
</script>
</head>
<body>
<div id="mydiv"></div>
<input id="button1" type="button" value="button" />
</body>
</html>