1

サイト内の要素にカーソルを合わせたときに、タイトル付きのバルーン メッセージを表示したいと考えています。jQuery コードが表示されますが、正しい方法で使用したかどうかわかりません。

これは私のコードです:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<script type="text/javascript" src="./js/jquery.balloon.js">
</script>

<script>
    $(document).ready($(function() {
        $('#style1').balloon({ position: "bottom right"});
    });
</script>
</head>
<body>
    <div id="wrap">

        <button id="style1" onclick="getValue('./CSS/style1.css')">style1</button>

    </div>
</body>

私が使用したこのリンクを手伝ってもらえますかhttp://file.urin.take-uma.net/jquery.balloon.js-Demo.html

4

3 に答える 3

0

タイトルがありません。< button id="style1" onclick="getValue('./CSS/style1.css')" title="YourTitleHere" >

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<script type="text/javascript" src="./js/jquery.balloon.js">
</script>

<script>
    $(document).ready($(function() {
        $('#style1').balloon({ position: "bottom right"});
    });
</script>
</head>
<body>
    <div id="wrap">
<button id="style1" onclick="getValue('./CSS/style1.css')" title="YourTitleHere">style1</button>

    </div>
</body>
于 2013-06-16T08:03:39.480 に答える
0

間違っている可能性があることがいくつかあり、いくつかの確実性があります。

  • バルーン プラグインは、ターゲット要素にtitle属性がある場合にのみバルーンを作成します。あなたbuttonはしません。

    title属性があることを確認してください。

  • js ファイルが所定の場所./js/jquery.balloon.jsに存在することを確認し、f12 を押してコンソール タブに移動し、エラーがないかどうかを確認します。

于 2013-06-16T07:24:49.283 に答える
0

ボタンに title 属性を追加する

        <button id="style1" onclick="getValue('./CSS/style1.css')" title="Some">style1</button>

JsFiddle の例

于 2013-06-16T07:42:25.603 に答える