标题中的换行符与区域目标=“”和坐标

时间:2016-05-09 01:40:01

标签: html css

如何对下面的代码进行换行,以便每行都能说明自己的事实? 可以这样做吗?

 <area target="" research="Spellcraft Delve into the arcane mysteries of Spellcraft, discovering new ways to produce and use mana. Increases: Fairy,Faceless and Drow production." href="" coords="47,39,109,99" shape="rect">

1 个答案:

答案 0 :(得分:0)

它无法使用您正在使用的插件。那是因为它使用jQuery.text()函数将title属性的内容移动到新创建的div。因此,没有HTML内容(包括&x13;)按原样呈现,而是以纯文本呈现 您可以编辑源代码并在jquery.style-my-tooltips.js第68行从.text()更改为.html()。 (但这可能会带来一些漏洞。)
或者您使用支持HTML工具提示的其他库。

或者您只是摆脱使用JS并尝试仅使用CSS,例如:Tooltip with HTML content without JavaScript