http://www.davidjrush.com/blog/2011/12/simple-jquery-tooltip/のいくつかの単純なjQロジックを使用して、効果のような単純なツールチップを作成します。
ただし、JQコードに改行を追加すると、すべてが南に移動し、ロジックが機能しなくなります(FF)。
作品:
$(this).append('<div class="tooltip"><p>This is a tooltip. It is typically used to explain something to a user without taking up space on the page.</p></div>');
ではない:
$(this).append('
<div class="tooltip"><p>This is a tooltip. It is typically used to explain something to a user without taking up space on the page.</p></div>
');
jQのドキュメントを確認すると、これが問題であるということについて私が見つけることができたものは何も記載されていません。
なぜそれが壊れているのか、そして/または私がどのように改行をjQ.append()に渡すのかは誰でも知っています