更多操作
小 (去除已于 mediawiki:common.js 中生效的脚本) |
小 (test) |
||
第7行: | 第7行: | ||
*/ |
*/ |
||
(function () { |
(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 () { |
$(".WikiaArticle a[title]").hover(function () { |
||
if (this.className != "") { return; } // 作为 wikilink 的超链接没有 class |
if (this.className != "") { return; } // 作为 wikilink 的超链接没有 class |
||
第19行: | 第12行: | ||
var title = a.attr("title"); |
var title = a.attr("title"); |
||
if (title != a.text()) { |
if (title != a.text()) { |
||
a.append($('<span class="wikilink-popup">' |
a.append($('<span class="wikilink-popup"/>').text(title)); |
||
} |
} |
||
}, function () { |
}, function () { |
2019年4月7日 (日) 17:25的版本
"use strict";
/**
* 在鼠标移至文本与标题不同的 wikilink 上时, 弹出带有原标题的 popup
* @author [[User:UnownHearn]]
* @version 1 (2018/07/28)
*/
(function () {
$(".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"/>').text(title));
}
}, function () {
$(this).find(".wikilink-popup").remove();
});
})();