Chinaunix首页 | 论坛 | 博客
  • 博客访问: 42434
  • 博文数量: 13
  • 博客积分: 0
  • 博客等级: 民兵
  • 技术积分: 381
  • 用 户 组: 普通用户
  • 注册时间: 2013-04-25 16:24
文章分类

全部博文(13)

文章存档

2013年(13)

我的朋友

分类: AIX

2013-07-01 14:44:44


点击(此处)折叠或打开

  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="">

  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>

阅读(414) | 评论(0) | 转发(0) |
0

上一篇:浅析职业生涯最迷茫的时刻,我该何去何从

下一篇:没有了

给主人留下些什么吧!~~