var text_interview_url; //页面初始化的时候加载文字访谈的链接 $(function () { request({ type: 'post', url: 'hdgn/textinterview/getLink', data: { num: "1" } }, function (response) { var resulst = JSON.parse(response); if("1"==resulst.code){ //不为空 if(resulst.data[0].WAPLJDZ){ text_interview_url = resulst.data[0].WAPLJDZ; } } }); }); //文字访谈点击 function wzft_click(){ if (text_interview_url) { window.location.href= text_interview_url; }else{ $.toast("该服务尚未开通"); } }