加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

使用AJAX返回WebService里的集合 .

发布时间:2020-12-16 00:59:59 所属栏目:百科 来源:网络整理
导读:-------------------WebService1 ----------------------------- // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。 [System.Web.Script.Services.ScriptService] public class WebService1 : System.Web.Services.WebService {

  1. -------------------WebService1 -----------------------------
  2. // 若要允许使用 ASP.NET AJAX 从脚本中调用此 Web 服务,请取消对下行的注释。
  3. [System.Web.Script.Services.ScriptService]
  4. public class WebService1 : System.Web.Services.WebService
  5. {
  6. [WebMethod]
  7. public List<string> GetList()
  8. {
  9. List<string> list = new List<string>();
  10. list.Add("王一");
  11. list.Add("22");
  12. list.Add("河北");
  13. return list;
  14. }
  15. }
  16. --------------------HTMLPage1.htm-----------------------
  17. <html xmlns="http://www.w3.org/1999/xhtml">
  18. <head>
  19. <title></title>
  20. <script src="js/Jquery1.7.js" type="text/javascript"></script>
  21. <script type="text/javascript">
  22. $(function () {
  23. $('#Button1').click(function () {
  24. $.ajax({
  25. type: "post",
  26. contentType: "application/json",
  27. url: "WebService1.asmx/GetList",
  28. data: "{}",
  29. success: function (result) {
  30. var str = '';
  31. for (var i = 0; i < result.d.length; i++) {
  32. str += result.d[i];
  33. }
  34. $('#mydiv').text(str);
  35. }
  36. })
  37. })
  38. })
  39. </script>
  40. </head>
  41. <body>
  42. <div id="mydiv"></div>
  43. <input id="Button1" type="button" value="button" />
  44. </body>
  45. </html>

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读