【子比美化】Zibll独立下载页面美化 效果如图,非常漂亮的美化

【子比美化】Zibll独立下载页面美化 效果如图,非常漂亮的美化 -1直接下载文件覆盖掉download.php即可(文件路径:/wp-content/themes/zibll/pages/download.php),更新前记得备份!记得备份!记得备份!不然就没后悔药吃了!

 

<!--下载页面密码复制-->
if(document.querySelectorAll(".but-download .badg")!=undefined){
    const reg = /[a-zA-z0-9]/ig;
    const copy = document.querySelectorAll(".but-download .badg");
    for (let i = 0; i < copy.length; i++) {
      copy[i].index = i;
      copy[i].setAttribute("data-toggle", "tooltip");
      copy[i].setAttribute("data-original-title", "点击复制");
      copy[i].addEventListener("click", copyOperation);
    };
    function copyOperation() {
      var oInput = document.createElement("input");
      let text = this.innerText;
      text = text.match(reg).join("");
      oInput.value = text;
      document.body.appendChild(oInput);
      oInput.select();
      document.execCommand("Copy");
      oInput.className = "oInput";
      oInput.style.display = "none";
      this.setAttribute("data-original-title", "已复制");
    };
};

这里再套个点击复制密码功能吧!

【子比美化】Zibll独立下载页面美化 效果如图,非常漂亮的美化-阿呆学习呀
【子比美化】Zibll独立下载页面美化 效果如图,非常漂亮的美化
此内容为付费资源,请付费后查看
2.9
限时特惠
9
付费资源
THE END
喜欢就支持一下吧
点赞122赞赏
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容