zoukankan      html  css  js  c++  java
  • jquery笔记

        /*
    $.ajax({
                url: "Blog/Test/" + Math.random(), //要访问的后台地址
                data: "", //要发送的数据
                type: 'GET', // 设置请求类型为 ‘POST’,默认为 ‘GET’
                beforeSend: function() {
                    $('#load').show();
                },
                error: function(request) {
                    $('load').hide();
                    $('#error').show().html(request.responseText);
                },
                success: function(data) {
        $("#password").text(data.Password);
                }
            });
      */

            //$.getJSON("/Blog/Test/"+Math.random(), {}, function(data) { $("#password").html(data.Password) });
            $.ajax({
                type: "get", //使用get方法访问后台
                dataType: "json", //返回json格式的数据
                url: "http://localhost:6923/blog/Test/" + Math.random(), //要访问的后台地址
                data: "", //要发送的数据
                complete: function() { $("#load").hide(); }, //AJAX请求完成时隐藏loading提示
                success: function(data) {//msg为返回的数据,在这里做数据绑定
                    $("#password").text(data.Password);
                }
            }
                    );

  • 相关阅读:
    1152 Google Recruitment (20 分)
    1095 解码PAT准考证 (25 分)
    1093 字符串A+B (20 分)
    1094 谷歌的招聘 (20 分)
    拖动无边框窗体
    全屏显示窗体
    动态按钮的窗体界面
    以树形显示的窗体界面
    设计软件启动界面
    动画显示窗体
  • 原文地址:https://www.cnblogs.com/lexus/p/1307110.html
Copyright © 2011-2022 走看看