function initConid() { // Comment点进去的文章列表 var con_ID = getQueryString('con_id'); // Top cited点进去的文章列表 if (con_ID != null) { var urlList = { list: 'api/Main/getNewsArticles' } $.ajax({ type: 'post', url: apiUrl + urlList.list, data: { "type": 'Comment' }, success: function (result) { if (result.code == 0) { $('.wenz_list>h4').html('Comment'); initArticle(result.data.articles) } else { ShowDanger("请求失败!"); } }, error: function () { ShowDanger("error!"); } }) function initArticle(arr) { var str = ""; for (var i = 0; i < arr.length; i++) { if (arr[i].icon == '') { continue } if (arr[i].icon == '') { var img_i = 'img/baiss.png' } else { var img_i = imgarticleUrl + arr[i].icon } var baseInfo = commonGetItemHtml({ data: arr[i], i: i, img_i: img_i, c_t_a: '' },500) var lr_top = '' str += `
  • ${baseInfo.otStat}${arr[i].title}
    ${arr[i].authortitle}
    ${arr[i].journal_title}. ${arr[i].stage_year}, ${arr[i].stage_vol}${baseInfo.stage_}${baseInfo.npp_}${baseInfo.doi_}
    ${baseInfo.person_img}${baseInfo.trad_tion}
  • ` } $('.wenz_list>ul').html(str); $('.links_ .txt_copy').css('background', localStorage.Journals_color); commonHandleClickHtml() } } }