0

jspでjQuery1.8.2、jQuery ui 1.9.1、Firefox 16.0.1を使用していて、アイコンを表示するためのボタンを取得しようとしています。私が試したのは:

$('button').button({ icons: {primary: "ui-icon-triangle-1-s" } });

とdivで:

<div id="buttonDiv" style="text-align: center;"> <button class="btn-primary"  type="button" id="confirmationButton" value="confirm">Confirmation</button> </div>

次に、ID、クラスを使用したり、タイプをボタンに設定したりしましたが、何らかの理由で表示されません。

ボタンを入力ボタンにしようとすると、それは設計上、そして私が使用するときに機能しないことを私は知っています

$('button').button() など。セレクターとしては正常に動作しています。

これが私のcdn宣言です:

<!-- Reference the theme's stylesheet on the Google CDN -->
    <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/themes/ui-lightness/jquery-ui.css" rel="stylesheet" type="text/css"/>

    <!-- Reference jQuery and jQuery UI from the CDN. Remember that the order of these two elements is important -->
    <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
    <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js" type="text/javascript"></script>

ここで何が欠けていますか?

4

1 に答える 1

1

他に不足しているリソースはありませんか? 必要な CSS と画像を含めましたか?

具体的には jquery-ui.css : http://code.jquery.com/ui/1.9.1/themes/base/jquery-ui.css およびhttp://code.jquery.com/ui/1.9.1/themes /base/images/ui-icons_222222_256x240.png

編集:

あなたのスクリプトタグを使用して、私はすぐにこれを書き上げました。

<!doctype html>
    <html>
    <head>
        <link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/themes/ui-lightness/jquery-ui.css" rel="stylesheet" type="text/css"/>
        <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.min.js" type="text/javascript"></script>
        <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.9.1/jquery-ui.min.js" type="text/javascript"></script>
        <script type="text/javascript">
        $(document).ready(function(){
            $('button').button({ icons: {primary: "ui-icon-triangle-1-s" } });
        });
        </script>
        </head>
    <body>
        <div id="buttonDiv" style="text-align: center;"> <button class="btn-primary"  type="button" id="confirmationButton" value="confirm">Confirmation</button> </div>
    </body>
    </html>
于 2012-11-09T15:37:44.677 に答える