これをコーディングしましたが、マーキー テキストに移動したときにツールチップが読み込まれません。
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" src="http://www.webringideas.com/wp-content/uploads/demo/tooltip/js/ntip.js"></script>
<div id="fixedfooter">
<marquee class="smooth_m" behavior="scroll" direction="left" onMouseOut="this.start()" onMouseOver="this.stop()" scrollamount="3">
<div id="demo">
<span style="color: #ff0000;" class="formInfo">
<a href="#">
<span style="color: #000000;display: none;" class="mycontent">test Successful for HTML Tooltip on marquee</span></a>Testing HTML Tooltip on marquee using jQuery and css
</span>
</div>
</marquee>
</div>
<script type="text/javascript">
$(document).ready(function(){
$(".formInfo").tooltip({tooltipcontentclass:"mycontent"})
});;
</script>
ただし、マーキーを使用しておらず、テキストが静的な場合、同じことがうまく機能します。
これはこれでうまくいきます、
<span class="formInfo">Tooltip<span style="display: none;" class="mycontent">Testing <font color="red">HTML</font> content</span></span>
マーキーで使用できる、推奨できるツールチップはありますか? ありがとう!