更多操作
(以“$("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 = | var a = $(this); | ||
if (title != | var title = a.attr("title"); | ||
if (title != a.text()) { | |||
a.append($('<span class="wikilink-popup">' + title + '</span>')); | |||
} | } | ||
}, function() { | }, function() { | ||
$(this).find(".wikilink-popup").remove(); | $(this).find(".wikilink-popup").remove(); | ||
}); | }); |