1

シンプルなモバイル Web ページを作成しました。理由はわかりませんが、作成したボタンがこのリンクのように様式化されていません。コードは次のとおりです。

<!DOCTYPE HTML>
<html>
<head>
    <meta name="viewport" content = "width=device-width ,  user-scalable=no">
    <meta http-equiv="Content-type" content="text/html; charset=utf-8">

    <link type="text/css" href="jquery.mobile/jquery.mobile-1.1.0.css"/>
    <link type="text/css" href="themes/theme.min.css"/>
    <link type="text/css" href="CSS/main.css"/>

    <script type="text/javascript" src="cordova/cordova-2.2.0.js"></script>
    <script type="text/javascript" src="jquery/jquery-1.8.3.js"></script>
    <script type="text/javascript" src="jquery.mobile/jquery.mobile-1.1.0.js"></script>

    <title>page</title>
</head>

<body>
    <div data-role="page">
        <div data-role="content">
            <a href="index.html" data-role="button" data-icon="delete">Delete</a>
        </div>
    </div>
</body>

</html>

どこが間違っていますか?前もって感謝します!

4

2 に答える 2

1

ローカル ライブラリが利用可能で、パスが正しいことを確認してください...最新のライブラリを使用した実際の
例を参照してください

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <title>Test</title>
  <link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
  <script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
  <script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
</head>

<body>
    <div data-role="page">
        <div data-role="content">
            <a href="index.html" data-role="button" data-icon="delete">Delete</a>
        </div>
    </div>
</body>
</html>
于 2012-11-17T22:09:52.873 に答える
1

問題はスタイルシート リンクにあると思います。rel="stylesheet"設定する代わりに含める必要がありますtype

例えば

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css"/>

于 2012-11-17T22:11:18.667 に答える