0

在此处输入图像描述

你好

我正在实现标题但无法显示标题(图标添加和设置)。我使用 jquery mobile add header .in fiddle 我可以看到图标,但在这里我无法显示。你能帮我么

  <html>
    <head>

      <link rel="stylesheet" href="css/jquery.mobile-1.3.1.min.css">

      <script src="js/jquery-1.9.1.min.js"></script>
      <script src="js/jquery.mobile-1.3.1.min.js"></script>



    </head>
    <script>



    </script>
    <body>
      <div data-role="page">
       <div data-role="header" data-theme="b">
      <h1 class="ui-title"  id="hdr" style="text-align:left;margin-left: 10px;">My Cases</h1>
      <div class="ui-btn-right" id="addbuttons" data-role="controlgroup" data-type="horizontal"> 
      <a href="#" data-role="button" data-inline="true" data-iconpos="notext" data-icon="gear" data-theme="b">Edit</a>
     <a href="#newevent1" data-role="button" data-iconpos="notext" data-inline="true" data-icon="plus" data-theme="b" data-rel="dialog">Add</a>
     <a href="#newevent1" data-role="button" data-inline="true" data-theme="b" data-rel="dialog">Edit</a>
      </div>
      </div>
      </div>

    </body>
    </html>
4

2 回答 2

3

这是缺少图像的情况。请确保您从这里获得最新的 jquery 文件,并且您在images文件夹内有文件夹(以 zip 文件提供),css即包含 jQuery Mobile 的 CSS 文件的文件夹。

于 2013-06-13T10:29:22.573 回答
1

确保您已将文件夹附加images到文件所在的jquery.mobile-1.3.1.min.css文件夹中,它包含一些图标,如果来源不正确,将仅显示类似的布局...

检查图标是否是他们的...

地图:-

css/folder---------jquery.mobile-1.3.1.min.css/file
css/folder---------images/folder
于 2013-06-13T11:33:55.420 回答