Home > Article > Web Front-end > Recruitment website automatically refreshes resume based on jQuery_jquery
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.