无涯教程-jQuery - jQuery.get( url, data, callback, type )方法函数

jQuery.get(url,[data],[callback],[type])方法使用GET HTTP请求从服务器加载数据。

该方法返回XMLHttpRequest对象。

jQuery.get( url, [data], [callback], [type] ) - 语法

$.get( url, [data], [callback], [type] )

这是此方法使用的所有参数的描述-

  • url           -  包含请求发送到的URL的字符串

  • data        -  此可选参数表示将发送到服务器的键/值对。

  • callback - 此可选参数表示成功加载数据时将执行的功能。

  • type        - 此可选参数表示要返回给回调函数的数据类型:" xml"," html"," script"," json"," jsonp"或"文本"。

jQuery.get( url, [data], [callback], [type] ) - 示例

假设无涯教程在result.php文件中包含以下PHP内容-

<?php
if( $_REQUEST["name"] ) {

   $name=$_REQUEST[name];
   echo "Welcome ". $name;
}

?>

以下是一个简单的示例,简单说明了此方法的用法-

<html>
   <head>
      <title>The jQuery Example</title>
      <script type="text/javascript" 
         src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js">
      </script>
		
      <script type="text/javascript" language="javascript">
         $(document).ready(function() {
			
            $("#driver").click(function(event){
               $.get( 
                  "result.php",
                  { name: "Zara" },
                  function(data) {
                     $(#stage).html(data);
                  }
               );
            });
				
         });
      </script>	
   </head>
	
   <body>
      <p>Click on the button to load result.html file -</p>
		
      <span id="stage" style="background-color:#cc0;">
         STAGE
      </span>
		
      <div><input type="button" id="driver" 
         value="Load Data" /></div>
	
   </body>
</html>

这应该产生以下输出-

jQuery 中的 jQuery.get( url, data, c - 无涯教程网无涯教程网提供jQuery.get(url,[data],[callback],[type])方法使用GET HTTP请求从服务器加载数据...https://www.learnfk.com/jquery/ajax-jquery-get.html