打开/关闭搜索
搜索
打开/关闭菜单
1K
3.9K
75
16.6K
Cookie☆Wiki
导航
首页
最近更改
随机页面
帮助
沙盒
特殊页面
上传文件
常用
曲奇简介
用语列表
常见组队列表
常见Crossover题材列表
曲奇年表
本篇列表
榜单列表
专辑列表
创作
音MAD
静画
曲奇实况
二创素材
BB剧场
漫画
同人游戏
实况系列
中华曲奇
本篇列表
人物列表
搬运者列表
汉化组列表
友情链接
Cookie☆贴吧
真夏夜的银梦贴吧
中文音MAD维基
潮学维基
中文曲奇维基Fandom站[已弃用]
通知
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。
user-interface-preferences
个人工具
创建账号
登录
查看“用户:UnownHearn/common.js”的源代码
查看
阅读
查看源代码
查看历史
associated-pages
用户页
讨论
更多操作
←
用户:UnownHearn/common.js
因为以下原因,您没有权限编辑该页面:
您请求的操作仅限属于该用户组的用户执行:
用户
您没有权限编辑此JavaScript页面,因为此页面包含另一位用户的个人设置。
您可以查看和复制此页面的源代码。
"use strict"; /** * 去掉内容与链接文本相同的 popup * @author [[User:UnownHearn]] * @version 1 (2018/07/28) */ (function () { // https://stackoverflow.com/questions/14346414/how-do-you-do-html-encode-using-javascript function htmlEncode(value) { //create a in-memory div, set it's inner text(which jQuery automatically encodes) //then grab the encoded contents back out. The div never exists on the page. return $('<div/>').text(value).html(); } $(".WikiaArticle a[title]").hover(function () { if (this.className != "") { return; } // 作为 wikilink 的超链接没有 class var a = $(this); var title = a.attr("title"); if (title != a.text()) { a.append($('<span class="wikilink-popup">' + htmlEncode(title) + '</span>')); } }, function () { $(this).find(".wikilink-popup").remove(); }); })(); /** * 自动转换链接 * @author [[User:UnownHearn]] * @version 1.4 (2019/03/18) */ (function () { /* 自动链接 */ var filter = (function (node) { if (node.nodeType == 3 /* TEXT_NODE */) { return NodeFilter.FILTER_ACCEPT; } else if (node.nodeType != 1 /* ELEMENT_NODE */ || node.tagName.toLowerCase() == "a" || node.classList.contains("no-autolink")) { return NodeFilter.FILTER_REJECT; } return NodeFilter.FILTER_SKIP; }) var rules = [{ // id: ["sm", "nm"], regex: /(sm|nm|im|av|ac)\d+/g, link: function (text) { console.log([text, text.slice(0, 2)]) switch (text.slice(0, 2)) { case "sm": case "nm": return "https://www.nicovideo.jp/watch/" + text; case "im": return "https://seiga.nicovideo.jp/seiga/" + text; case "av": return "https://www.bilibili.com/video/" + text; case "ac": return "http://www.acfun.cn/v/" + text; } // throw("?"); } }, { // id: ["mylist", "user"], regex: /(mylist|user)\/\d+/g, link: "https://www.nicovideo.jp/{}" }]; var nodes = []; var as = document.getElementsByClassName("WikiaArticle"); Array.prototype.forEach.call(as, function (a) { var walker = document.createTreeWalker(a, NodeFilter.SHOW_ALL, { acceptNode: filter }); while (walker.nextNode()) { nodes.push(walker.currentNode); } }) for (var nodeIndex in nodes) { var node = nodes[nodeIndex]; var html = node.textContent; for (var ruleIndex in rules) { var rule = rules[ruleIndex]; html = html.replace(rule.regex, function (old) { var link; if (typeof rule.link === "function") { link = rule.link(old); } else { link = rule.link.replace("{}", old); } return "<a class=\"autolink\" href=\"" + link + "\">" + old + "</a>"; }); } if (html != node.textContent) { var parentNode = node.parentNode; var dummy = document.createElement("span"); dummy.innerHTML = html; parentNode.replaceChild(dummy, node); } } })();
返回
用户:UnownHearn/common.js
。