-1

私は自分のアプリケーションにtipsy.jsを使用しています.

<div id="div142" class="CheckBox3Img" runat="server" title=" Store xxx try to give more " visible="false" style="height: 19px; margin-top: 8px; cursor: pointer;">
                            <a id="lnkStore" runat="server" style="float: left; height: 18px; width: 24px;" title=" Website Store"
                                class="imgwebDev">
                                <img src="../../App_Themes/Main/_images/DollarImg.jpg" />
                            </a>
</div>

JavaScript:

$(.CheckBox3Img).tipsy({gravity:s});

注:これは、他のデバイスのiPadをサポートしているため、通常の最大化されたウィンドウで機能します。ツールチップの幅がテキスト全体を表示するのに十分なスペースがない場合、ウィンドウの幅は小さくなり、点滅またはジャンプし始めます。ウィンドウのサイズを小さくして、ツールチップ要素がウィンドウの隅にあることを確認します。

4

3 に答える 3

0

みんなありがとう私はそれであるスペースが必要なところに&nbspを追加することによって問題を解決しました。

<div id="div142" class="CheckBox3Img" runat="server" title="Store&nbsp;xxx&nbsp;try&nbsp;to give&nbsp;more&nbsp; " visible="false" style="height: 19px; margin-top: 8px; cursor: pointer;">
                            <a id="lnkStore" runat="server" style="float: left; height: 18px; width: 24px;" title=" Website Store"
                                class="imgwebDev">
                                <img src="../../App_Themes/Main/_images/DollarImg.jpg" />
                            </a>
</div>
于 2012-03-23T03:51:47.113 に答える