Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

libai / footsen

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Switch branch/tag
  • footsen
  • footseen
  • js
  • index.js
Find file
BlameHistoryPermalink
  • dabai's avatar
    footseen h5 移植 · 6161a8cd
    dabai committed 4 years ago
    6161a8cd
index.js 978 Bytes
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
/**
 * Created by  web on 2017/12/5.
 */
$(function () {
    $.ajax({
        url:"https://zhiboweb.yazhaiyabo.com/statDownload/apk",
        dataType:"json",
        type:"get",
        success: function (msg) {
            console.log(msg);

            var html=[];
            html+="<a href="+msg.ApkUrl+"><img src='images/appandroid.png' alt='Ѿ����׿������'></a>"
            html+="<a href="+msg.IOSUrl+"><img src='images/appapple.png' alt='Ѿ��ios����'></a>"
            $(".down").html(html);
            var html2=[];
            html2+="<a href="+msg.ApkUrl+"><img style='margin-right: 40px;' src='images/android.png' alt='Ѿ����׿������'></a>"
            html2+="<a href="+msg.IOSUrl+"><img src='images/ios.png' alt='Ѿ��ios����'/></a>"
            new QRCode(document.getElementById("erwei-boder"), 'http://yabolive.com/Download.html');
            $(".phonedown").html(html2);

        }
    })

})