分享更有价值
被信任是一种快乐

jQuery.post使用的注意事项有哪些

文章页正文上

本篇内容介绍了“jQuery.post使用的注意事项有哪些”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!
  由于浏览器的安全限制,大多数“Ajax”的要求,均采用同一起源的政策 ;即无法从不同的域,子域或协议中正确接收数据。
  如果一个jQuery.post()请求返回一个错误代码,它会静静的失败,除非脚本调用全局的.ajaxError()方法。在jQuery 1.5, 通过jQuery.post()返回的jqXHR对象的.error()方法也可用于错误处理。
  例子:
  Example: 请求 test.php 页面, 但是忽略返回结果
  $.post(“test.php”);
  Example: 请求 test.php 页面 并且发送url参数(虽然仍然忽视返回的结果)。
  $.post(“test.php”, { name: “John”, time: “2pm” } );
  Example: 传递数组形式data参数给服务器 (虽然仍然忽视返回的结果)。
  $.post(“test.php”, { ‘choices[]’: [“Jon”, “Susan”] });
  Example: 使用Ajax请求发送表单数据。
  $.post(“test.php”, $(“#testform”).serialize());
免费云主机、域名  Example: Alert 从 test.php请求的数据结果 (HTML 或者 XML,取决于返回的结果)。
  $.post(“test.php”, function(data) {
  alert(“Data Loaded: ” + data);
  });
  Example: Alert 从 test.cgi请求并且发送url参数的数据结果 (HTML 或者 XML,取决于返回的结果)。
  $.post(“test.php”, { name: “John”, time: “2pm” },
  function(data) {
  alert(“Data Loaded: ” + data);
  });
  Example: 得到test.php的内容,存储在一个 XMLHttpResponse 对象中并且运用 process() JavaScript函数。
  $.post(“test.php”, { name: “John”, time: “2pm” },
  function(data) {
  process(data);
  },
  ”xml”
  );
  Example: Posts to the test.php page and gets contents which has been returned in json format (“John”,”time”=>”2pm”)); ?>).
  $.post(“test.php”, { “func”: “getNameAndTime” },
  function(data){
  console.log(data.name); // John
  console.log(data.time); // 2pm
  }, “json”);
  Example: 用ajax传递一个表单并把结果在一个div中
  

  
  
  
  
  
  
  
  
  
  
  
  
  /* attach a submit handler to the form */
  $(“#searchForm”).submit(function(event) {
  /* stop form from submitting normally */
  event.preventDefault();
  /* get some values from elements on the page: */
  var $form = $( this ),
  term = $form.find( ‘input[name=”s”]’ ).val(),
  url = $form.attr( ‘action’ );
  /* Send the data using post and put the results in a div */
  $.post( url, { s: term },
  function( data ) {
  var content = $( data ).find( ‘#content’ );
  $( “#result” ).empty().append( content );
  }
  );
  });
  
  
  “jQuery.post使用的注意事项有哪些”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注云技术网站,小编将为大家输出更多高质量的实用文章!

相关推荐: object.assign()如何使用

这篇“object.assign()如何使用”文章的知识点大部分人都不太理解,所以小编给大家总结了以下内容,内容详细,步骤清晰,具有一定的借鉴价值,希望大家阅读完这篇文章能有所收获,下面我们一起来看看这篇“object.assign()如何使用”文章吧。 ob…

文章页内容下
赞(0) 打赏
版权声明:本站采用知识共享、学习交流,不允许用于商业用途;文章由发布者自行承担一切责任,与本站无关。
文章页正文下
文章页评论上

云服务器、web空间可免费试用

宝塔面板主机、支持php,mysql等,SSL部署;安全高速企业专供99.999%稳定,另有高防主机、不限制内容等类型,具体可咨询QQ:360163164,Tel同微信:18905205712

主机选购导航云服务器试用

登录

找回密码

注册