jQuery 中的 jQuery.post() 和 jQuery.get() 方法有什么区别?
jQuery post() 方法
jQuery.post( url, [data], [callback], [type] ) 方法使用 POST HTTP 请求从服务器加载页面。
假设我们在 result.php 文件中有以下 PHP 内容,
示例
以下代码段演示了此方法的使用 −
<head> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function() { $("#driver").click(function(event){ $.post( "result.php", { name: "Ricky" }, function(data) { $('#stage').html(data); } ); }); }); </script> </head> <body> <p>Click on the button to load result.html file −</p> <div id = "stage" style = "background-color:cc0;"> STAGE </div> <input type = "button" id = "driver" value = "Load Data" /> </body>
jQuery get() 方法
jQuery.get( url, [data], [callback], [type] ) 方法使用 GET HTTP 请求从服务器加载数据。
假设我们在 result.php 文件中有以下 PHP 内容 −
<?php if( $_REQUEST["name"] ) { $name = $_REQUEST['name']; echo "Welcome ". $name; } ?>
示例
以下代码段演示了此方法的使用 −
<head> <script src = "https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script> <script> $(document).ready(function() { $("#driver").click(function(event){ $.get( "result.php", { name: "John" }, 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>
广告