在html控件的工具提示中显示Superscript char?(Show Superscript char in tooltip of a html control?)

我想知道,可以在html控件的工具提示中显示上标字符。

$(tblth).attr("title","name <sup>a</sup>");

I want to know, it's possible to show superscript character in the tool tip of html control for ex.

$(tblth).attr("title","name <sup>a</sup>");

最满意答案

因为它不是HTML(它本地呈现并依赖于操作系统),所以你不能这样做。

通常的解决方案是自己做工具提示(或使用众多库中的一个)。 好消息是这很容易。

As it's not HTML (it's natively rendered and depends on the OS), no you can't do that.

The usual solution is to do your own tooltip (or use one of the numerous libraries). The good news is that's easy.

更多推荐