$(function () { let list_flex = $(".list .list-flex"); Array.from(list_flex).forEach(item => { let list_item = $(item).find(".list-item"); list_item.click(function (e) { if (e.target.className != "blue" && $(e.target).parent()[0].className == "p") { $("#toast").addClass("show") return false; } if (!$(this).data("href")) return false; window.location.href = $(this).data("href"); }) if (list_item.length == 1) { $(item).append(``); } }) }) $(function () { let path = lxd.parseUrl(window.location.href).pathname; let reg = /(?<=\/h_exam\/).*?(?=.html)/; $.ajax({ url: `http://api.gaokaoapp.net/exampaper/h/${path.match(reg)}/`, data: { }, type: "get", error: function (error) { $(".loading").html("获取更多的评论,请下载大联考app").show(); }, success: function (res) { let { comments, like_count = 1, read_count = 1 } = res.data; $(".good>span").html(like_count); $(".see").html(`阅读数:${read_count}`); let father = document.createDocumentFragment(); Array.from(comments).forEach( item => { let str = `
${item.user_name}
${item.like_count}
${item.content}
${item.delay_time}
`; $(father).append(str); } ) $("#detail").append(father); $(".loading").html("获取更多的评论,请下载大联考app").show() } }) })