'); }); }, error: function() { console.log("加载国务院数据错误。"); } }); } //省府要闻 function sfyw() { $.ajax({ url: 'https://jt.hainan.gov.cn/u/port/list?code=hainan&key=18e6ca0ea4434f82ab06eb8dc11d926a&channel_id=82cdb5b25e514a1bba6429aef621ce6c', dataType: 'json', type: 'post', success: function(data) { var sfyw_data = data.data.list; $.each(sfyw_data, function(i, json2) { if (i > 9) { return; } var title = json2.title; var pubdate = json2.published_time; if (title.length > 27) { title = title.substring(0, 27) + "..."; } $("#sfyw").append('
  • ' + title + ' ' + pubdate + '
  • '); }); }, error: function() { console.log("加载省府信息错误。"); } }); }