Home > Web Front-end > JS Tutorial > body text

Recruitment website automatically refreshes resume based on jQuery_jquery

WBOY
Release: 2016-05-16 15:59:59
Original
1230 people have browsed it

Change the value of the res_id_encode parameter in the code, such as 5830549229E3096684665, to the ID related to your Liepin account. How to check your own ID? Just open F12 and click Refresh Resume in Liepin.com Personal Center. You can see the get request in the similar code in the network. Just copy the parameters of the request and replace the value of res_id_encode. Finally, copy the code to the console and run it.

function refreshResume() {
  $.post('/resume/refreshresume/','res_id_encode=5830549229E3096684665',function(data,status){
    console.log(data);
  });
}
var timer = setInterval(refreshResume,300000);//五分钟刷新一次
Copy after login

The above is the entire content of this article, I hope you all like it.

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template