/* * @descripttion: * @version: * @author: 闫旭 * @date: 2021-01-06 10:28:39 * @lasteditors: suerimn * @lastedittime: 2022-02-16 14:43:38 */ // http://app.litenews.cn/pv/c-ea_ljhis9baaxxbw996q?id=4495311 try { var url = "//app.litenews.cn/pv/" + code + "?id=" + id; } catch (error) { console.log("---", "估计code没有渲染"); } // window.addeventlistener("beforeunload", function (event) { // addpv(); // }); function addpv() { $.ajax({ url: url, type: "get", success: function (res) { console.log(res, "rrr"); }, }); } // 格式化文稿标题 function formatarticletitle() { var el = $(".inner_content >h1"); var text = el.html(); console.log(text); if (!text) { return; } var reg1 = /]*>(.|\n)*<\/span>/gi; text = text.replace(reg1, "
"); el.html(text); } $(function () { addpv(); formatarticletitle(); console.log($(".inner_content_con article video")); $(".inner_content_con article video").attr("width", "800"); $(".inner_content_con article video").attr("height", "auto"); $(".inner_content_con video").bind("contextmenu", function () { return false; }); var con = document.queryselectorall(".inner_content_con img"); for (var index = 0; index < con.length; index++) { var element = con[index]; element.style.width = "800px"; element.style.height = "auto"; } $(document).bind("contextmenu copy selectstart", function () { return false; }); var img = $("img"); img.on("contextmenu", function () { return false; }); img.on("dragstart", function () { return false; }); });