打开/关闭菜单
打开/关闭个人菜单
未登录
未登录用户的IP地址会在进行任意编辑后公开展示。

用户:UnownHearn/common.js:修订间差异

(以“$("a").hover(function() { var title = this.attr("title"); if (title != this.text()) { $(this).append($('<span class="wikilink-popup">' + title + '</span>'));...”为内容创建页面)
 
无编辑摘要
第1行: 第1行:
$("a").hover(function() {
$("a").hover(function() {
var title = this.attr("title");
var a = $(this);
if (title != this.text()) {
var title = a.attr("title");
if (title != a.text()) {
$(this).append($('<span class="wikilink-popup">' + title + '</span>'));
a.append($('<span class="wikilink-popup">' + title + '</span>'));
}
}
}, function() {
}, function() {

2018年7月22日 (日) 17:43的版本

$("a").hover(function() {
  var a = $(this);
  var title = a.attr("title");
  if (title != a.text()) {
    a.append($('<span class="wikilink-popup">' + title + '</span>'));
  }
}, function() {
  $(this).find(".wikilink-popup").remove();
});