5.js 280 B

123456789101112131415
  1. function FinishGuide()
  2. {
  3. var tSend={};
  4. tSend['sequence_id']=Math.round(new Date() / 1000);
  5. tSend['command']="user_guide_finish";
  6. tSend['data']={};
  7. tSend['data']['action']="finish";
  8. SendWXMessage( JSON.stringify(tSend) );
  9. //window.location.href="../6/index.html";
  10. }