Home  >  Article  >  Web Front-end  >  Recruitment website automatically refreshes resume based on jQuery_jquery

Recruitment website automatically refreshes resume based on jQuery_jquery

WBOY
WBOYOriginal
2016-05-16 15:59:591181browse

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);//五分钟刷新一次

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

Statement:
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