12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- $(".popular").hide();
- $(document).on("click", ".likeSee__state__filter--item", function (event) {
- $(".News").toggle();
- $(".popular").toggle();
- $(".likeSee__state__filter--item").removeClass('active');
- $(this).addClass("active");
- });
- function get_data() {
- // var desid2=String(desid);
- // console.log(desid2);
- // $("#version").val(desid);
- // $("#version").html(desid);
- $.ajax({
- method: "GET",
- url: "cases.json",
- dataType: "json",
- })
- .done(function (msg) {
- for (var i = 0; i < msg.length; i++) {
- // if (msg[i].id == id) {
- var contentarticle = '';
- var webtitle = '';
- console.log(msg);
- contentarticle += ' \
- <h1 class="sec10-title">\
- '+ msg[i].articletitle + ' \
- </h1>\
- <p class="card-text"><small class="text-muted">By'+ msg[i].articleauthor + '</small></p>\
- <img class="m-1" style="width: 20px;" src="./img/time.png" alt=""><span>'+ msg[i].articledate + '</span>\
- <hr>\
- <a target="_blank" href="https://testnets.akaswap.com/akaobj/251">\
- <img class="img-fluid" src="'+ msg[i].articleimg + '" alt="">\
- </a>\
- <!-- 文章內容 -->\
- <div class="sec10-content mt-3">\
- '+ msg[i].artuclecontent + '\
- </div>';
- webtitle += ' \
- '+ msg[i].articletitle + '';
- // }
- $('#webtitle').html(webtitle);
- $('.content').html(contentarticle);
- }
- });
- }
|