转自:http://www.jb51.cc/article/p-agpzymln-g.html
- <htmlxmlns="http://www.w3.org/1999/xhtml">
- head>
- title></scriptsrc="js/Jquery1.7.js"type="text/javascript"scriptscripttype="text/javascript" $(function(){
- /*$('#Button1').click(function(){
- $.ajax({
- type:"post",
- contentType:"application/json",
- url:"WebService1.asmx/GetDate",248); line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> data:"{}",108); list-style:decimal-leading-zero outside; color:inherit; line-height:18px; margin:0px!important; padding:0px 3px 0px 10px!important"> success:function(result){
- $('#mydiv').text(result.d);
- }
- })
- })*/
- functionGetDate(){
- $.ajax({
- type:"post",//客户端向服务器发送请求时采取的方式
- contentType:"application/json",//指定客户端发送给服务器的内容的类型以及服务器返回给客户端内容的类型为json格式
- url:"WebService1.asmx/GetDate",//指明客户端要向哪个页面里面的哪个方法发送请求
- data:"{}",//指定伴随发送的请求传递到服务器的参数
- success:function(result){//客户端调用服务器端方法成功后执行的回调函数。
- $('#mydiv').text(result.d);
- }
- })
- setInterval(GetDate,1000);
- bodydivid="mydiv"divinputid="Button1"type="button"value="获取服务器时间"/>
- html>
解决使用ajax没反应的问题
1.在后台设置断点,调试,看看能否触发后台方法
2.如果能够触发,说明前台的ajax代码写的没问题
3.如果不能触发,说明ajax代码有问题,着重检查url,data两个参数。 原文链接:/ajax/163529.html