Dota 2 Wiki

你现在尚未登录,许多功能可能无法正常使用,若已有账号,请登录,若没有,请先注册Twitch账号
目前我们有非常多的待翻译条目,你也可以看一下目前我们需要优先处理的有哪些目前我们有非常多的待翻译条目,你也可以看一下目前我们需要优先处理的有哪些英雄页面的攻略、克制和物品页面的推荐英雄、小贴士等均为社区玩家编写的,你也可以把自己的心得写上去哦。英雄页面的攻略、克制和物品页面的推荐英雄、小贴士等均为社区玩家编写的,你也可以把自己的心得写上去哦。看不懂技能的buff/debuff是哪个跟哪个?鼠标移动到名称上就能看到游戏内显示的名字和描述了。看不懂技能的buff/debuff是哪个跟哪个?鼠标移动到名称上就能看到游戏内显示的名字和描述了。目前我們沒有善於製作其他中文變體的人員,如果您善於或擁有相關技術,請幫忙補充其他中文變體的空白。目前我們沒有善於製作其他中文變體的人員,如果您善於或擁有相關技術,請幫忙補充其他中文變體的空白。

了解更多

Dota 2 Wiki
Advertisement
Reality Rift icon
▶️ Planeshift.
该module的文档可以在Template:Tooltip找到。
You may be forwarded to another wiki language, in case a translation is not available.



local libraryUtil = require('libraryUtil')
local getArgs = require('Module:Arguments').main
local p = {}


function p.main()
  local args = getArgs()
  return p._main(args)
end

function p._main(args)
  libraryUtil.checkType('_main', 1, args, 'table')
  assert(args[1] and args[2], '缺少参数')

  local output = mw.html.create('span'):attr('id', 'tooltip')
                                       :attr('title', args[2])
                                       :wikitext(args[1])

  if args['plain'] then
    return output
  else
    return output:css('cursor', 'help')
                 :css('border-bottom', '1px dotted')
  end
end


return p
Advertisement