jquery - 3
Posted 雨停了
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery - 3相关的知识,希望对你有一定的参考价值。
1.ajax
$(selector).load(url,data,callback); //url是需要加载的数据地址;data是规定与请求一同发送的查询字符串键值对;callback参数是load()方法完成后所执行的函数名称。 $(‘button‘).click(function(){ $(‘#div‘).load(‘demo.txt‘,function(res,status,xhr){ if(status==‘success‘){} if(status==‘error‘){} }) }) //res是返回的数据,status是调用状态,xhr是异步传输对象。 $.get(url,function(data,status){}); $.post(url,data,function(data,status){});
2.each
$(selector).each(function(index,ele) { console.log(index); })
以上是关于jquery - 3的主要内容,如果未能解决你的问题,请参考以下文章
pbootcms对接微信扫码登录代码核心片段和步骤(前后端)
markdown 在WordPress中使用jQuery代码片段