jQuery技术

jQuery 中的 39 个技巧 码农网(5)

字号+ 作者:H5之家 来源:H5之家 2017-03-20 08:00 我要评论( )

我们不仅可以在电脑上ping到一个网站的ip,也可以通过jQuery得到。 $.get('http://jsonip.com/', function(r){ log(r.ip); });// For older browsers, which don't support CORS// $.getJSON('http://jsonip.com/?c

我们不仅可以在电脑上ping到一个网站的ip,也可以通过jQuery得到。

$.get('http://jsonip.com/', function(r){ log(r.ip); }); // For older browsers, which don't support CORS // $.getJSON('http://jsonip.com/?callback=?', function(r){ log(r.ip); }); 38.使用最简单的ajax请求

jQuery(使用ajax)提供了一个速记的方法来快速下载内容并添加在一个元素中。

<p></p> <p></p> var contentDivs = $('.content'); // Fetch the contents of a text file: contentDivs.eq(0).load('1.txt'); // Fetch the contents of a HTML file, and display a specific element: contentDivs.eq(1).load('1.html #header'); 39.序列化对象

jQuery提供了一个方法序列化表单值和一般的对象成为URL编码文本字符串。这样,我们就可以把序列化的值传给ajax()作为url的参数,轻松使用ajax()提交表单了。

<form action=""> First name: <input type="text" value="Bill" /><br /> Last name: <input type="text" value="Gates" /><br /> </form> // Turn all form fields into a URL friendly key/value string. // This can be passed as argument of AJAX requests, or URLs. $(document).ready(function(){ console.log($("form").serialize()); // FirstName=Bill&LastName=Gates }); // You can also encode your own objects with the $.param method: log($.param({'pet':'cat', 'name':'snowbell'}));

持续更新中…

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
  • Jquery数组操作技巧 - snowfly123

    Jquery数组操作技巧 - snowfly123

    2017-03-21 14:02

  • javascript之jQuery 性能优化技巧

    javascript之jQuery 性能优化技巧

    2017-03-19 18:05

  • JQuery实用技巧总结

    JQuery实用技巧总结

    2017-03-19 12:04

  • webjx收集45个jQuery导航插件和教程

    webjx收集45个jQuery导航插件和教程

    2017-03-18 16:00

网友点评
f