corral

Untitled

Nov 15th, 2020
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. fruits = ["https://music.163.com/#/song?id=1807844", "https://music.163.com/#/song?id=26232444", "https://music.163.com/#/song?id=26505362", "https://music.163.com/#/song?id=29013277"];
  2. time = ["247000","207000","322000","250000"];
  3. fLen = fruits.length;
  4. i = 0;
  5. function f() {
  6. $.ajax({
  7. type: "POST",
  8. data: {message:"/share " + fruits[i]}
  9. });
  10. i++;
  11. if(i < fLen ){
  12. setTimeout( f, time[i] );
  13. }
  14. }
  15. f();
Advertisement
Add Comment
Please, Sign In to add comment