class Banerinfo { constructor() { this.bannerinfoMenu(); } async bannerinfoMenu() { let res = await Banerservice.BanerInfo({ url: GetQueryString("url"), }); console.log(res); $(".img_hidden img").attr("src", res.banner) $(".content .content_title").text(res.title) $(".content").append(`${res.content}`) $(".goodsitem").remove() $(".headportrait").attr("src", res.comment.img) $(".content .content_title").text(res.comment.name) $(".content .content_title").text(res.comment.time) $(".content .content_title").text(res.comment.content) } } new Banerinfo()