$(document).ready(isThisAccountBannedFunc); function isThisAccountBannedFunc() { $.get('/source/index/ajax_profile.php?ac=accountIsBan').success(function (data) { // console.log('isThisAccountBannedFunc data', data); // var dataJson = JSON.parse(data); if (data.code === '200') { showBanedAlert(); } }) } function showBanedAlert() { alert('因发布的APP不符合审核规则,已停用账号发布功能', function () { // 是否在上传页,在上传页跳转到列表 if(isUploadPage == 1) { window.location.href = '/index.php/apps'; } }); // var element_cover = document.createElement('div'); // element_cover.innerHTML = // '
' // + '
' // + '
' // + '   提示' // + '×' // + '
' // + '
因发布的APP不符合审核规则,
已停用账号发布功能!
' // + '
' // + '
' // // document.body.appendChild(element_cover); // $('.banedcover .banedcoverclose').click(function(){ // document.body.removeChild(element_cover); // }); }