0

「 http://jquerymobile.com/demos/1.2.1/docs/buttons/buttons-icons.html」によると、データアイコンで動作するボタンを取得しようとしています。次のコード...

<!DOCTYPE html>
<html>
<head>
    <title></title>
</head>
<body>
   <link href="Content/jquery.mobile-1.3.0.min.css" rel="stylesheet" type="text/css" />
   <a data-role="button" href="#page1" data-icon="arrow-u" data-iconpos="left">
        Button
    </a>
</body>
</html>

ただし、これをローカルでビルドしてサーバーにデプロイすると、アイコンが表示されません。誰でも助けてもらえますか?

4

4 に答える 4

3

マークアップは次のようになります。

<head>
 <link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.css" />
 <script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
 <script src="http://code.jquery.com/mobile/1.3.1/jquery.mobile-1.3.1.min.js"></script>
</head>

そして jQuery Mobile コード

<div data-role='page'>
 <a href='#' data-role='button' data-icon='arrow-u' data-iconpos='left'>Button</a>
</div>

参考文献:

于 2013-06-05T13:23:30.243 に答える
0

このjsbinを参照してください

head コンテンツ内に <link> タグを配置する必要があります。また、他の (以下の) スクリプトも追加する必要がある場合があります。

<link href="http://code.jquery.com/mobile/latest/jquery.mobile.css" rel="stylesheet" type="text/css" />
<script src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script src="http://code.jquery.com/mobile/latest/jquery.mobile.js"></script>
于 2013-06-05T13:23:46.433 に答える
0

スタイル シートは head 内でリンクする必要があります。

<head>
   <title></title>
   <link href="Content/jquery.mobile-1.3.0.min.css" rel="stylesheet" type="text/css" />
</head>
<body>
   <a data-role="button" href="#page1" data-icon="arrow-u" data-iconpos="left">
    Button
   </a>
</body>
于 2013-06-05T13:23:47.563 に答える