Go to my github

jQuery.get(url,[data],[callback])

jQuery.get(url,[data],[callback])

通过远程 HTTP GET 请求载入信息。
这是一个简单的 GET 请求功能以取代复杂 .ajax使.ajax。

Load a remote page using an HTTP GET request.
This is an easy way to send a simple GET request to a server without having to use the more complex .ajaxfunction.Itallowsasinglecallbackfunctiontobespecifiedthatwillbeexecutedwhentherequestiscomplete(andonlyiftheresponsehasasuccessfulresponsecode).Ifyouneedtohavebotherrorandsuccesscallbacks,youmaywanttouse.ajax.

返回值

XMLHttpRequest

参数

url (String) : 待载入页面的URL地址

data (Map) : (可选) 待发送 Key/value 参数。

callback (Function) : (可选) 载入成功时回调函数。

示例

请求 test.php 网页,忽略返回值。

jQuery 代码:

$.get("test.php");
var url = "../config/chkAjax.ashx?action=chkUserName&userName=" + document.getElementById("editUserName").value;
$.get(url, function (data) {
if (data != "OK") {
           alert(data);
           document.getElementById("editUserName").focus();
           return false;
   }

}); 


请求 test.php 网页,传送2个参数,忽略返回值。

jQuery 代码:

$.get("test.php", { name: "John", time: "2pm" } );

显示 test.php 返回值(HTML 或 XML,取决于返回值)。

jQuery 代码:

$.get("test.php", function(data){
  alert("Data Loaded: " + data);
});

显示 test.cgi 返回值(HTML 或 XML,取决于返回值),添加一组请求参数。

jQuery 代码:

$.get("test.cgi", { name: "John", time: "2pm" },
  function(data){
    alert("Data Loaded: " + data);
  });

JS实现通用效果


复制代码
var xmlhttp;
   
function getReturn(Url)  //提交为aspx,aspx页面路径, 返回页面的值
{
    
if(typeof XMLHttpRequest != "undefined")
    {
        xmlhttp 
= new XMLHttpRequest();
    }
    
else if(window.ActiveXObject)
    {
        
var versions = ["MSXML2.XMLHttp.5.0","MSXML2.XMLHttp.4.0","MSXML2.XMLHttp.3.0","MSXML2.XMLHttp","Microsoft.XMLHttp"];
        
for(var i = 0 ; i < versions.length; i++)
        {
            
try
            {
                xmlhttp 
= new ActiveXObject(versions[i]);
                
break;
            }
            
catch(E)
            {
            }
        }
    }
        
    
try 
    {
        xmlhttp.open(
'GET',Url,false);   
        xmlhttp.setRequestHeader(
'Content-Type','application/x-www-form-urlencoded')
        xmlhttp.send(
null);    
        
        
if((xmlhttp.readyState == 4)&&(xmlhttp.status == 200))
        {
            
return xmlhttp.responseText;
        }
        
else
        {
           
return null;
        }
    }
    
catch (e) 
    {  
         alert(
"你的浏览器不支持XMLHttpRequest对象, 请升级"); 
    }

    
return null;
}
复制代码

 调用:

复制代码
   result = getReturn('ajaxupgrade.aspx?op=unzip');
   
if (result != "") {
      document.getElementById(
"unzip" + i).src = "../Img/state1.gif";
   } 
else {
      document.getElementById(
"unzip" + i).src = "../Img/state2.gif";

   } 

复制代码
posted @   峡谷少爷  阅读(8279)  评论(1编辑  收藏  举报
编辑推荐:
· .NET Core 中如何实现缓存的预热?
· 从 HTTP 原因短语缺失研究 HTTP/2 和 HTTP/3 的设计差异
· AI与.NET技术实操系列:向量存储与相似性搜索在 .NET 中的实现
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
阅读排行:
· TypeScript + Deepseek 打造卜卦网站:技术与玄学的结合
· Manus的开源复刻OpenManus初探
· AI 智能体引爆开源社区「GitHub 热点速览」
· 三行代码完成国际化适配,妙~啊~
· .NET Core 中如何实现缓存的预热?
点击右上角即可分享
微信分享提示