goto.js 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. $(".popular").hide();
  2. $(document).on("click", ".likeSee__state__filter--item", function (event) {
  3. $(".News").toggle();
  4. $(".popular").toggle();
  5. $(".likeSee__state__filter--item").removeClass('active');
  6. $(this).addClass("active");
  7. });
  8. function get_data() {
  9. // var desid2=String(desid);
  10. // console.log(desid2);
  11. // $("#version").val(desid);
  12. // $("#version").html(desid);
  13. $.ajax({
  14. method: "GET",
  15. url: "cases.json",
  16. dataType: "json",
  17. })
  18. .done(function (msg) {
  19. for (var i = 0; i < msg.length; i++) {
  20. // if (msg[i].id == id) {
  21. var contentarticle = '';
  22. var webtitle = '';
  23. console.log(msg);
  24. contentarticle += ' \
  25. <h1 class="sec10-title">\
  26. '+ msg[i].articletitle + ' \
  27. </h1>\
  28. <p class="card-text"><small class="text-muted">By'+ msg[i].articleauthor + '</small></p>\
  29. <img class="m-1" style="width: 20px;" src="./img/time.png" alt=""><span>'+ msg[i].articledate + '</span>\
  30. <hr>\
  31. <a target="_blank" href="https://testnets.akaswap.com/akaobj/251">\
  32. <img class="img-fluid" src="'+ msg[i].articleimg + '" alt="">\
  33. </a>\
  34. <!-- 文章內容 -->\
  35. <div class="sec10-content mt-3">\
  36. '+ msg[i].artuclecontent + '\
  37. </div>';
  38. webtitle += ' \
  39. '+ msg[i].articletitle + '';
  40. // }
  41. $('#webtitle').html(webtitle);
  42. $('.content').html(contentarticle);
  43. }
  44. });
  45. }