1

ページ遷移後に背景色を変更する方法を知りたいです。

たとえば、最初のリンクをクリックして次のページに「ポップ」すると、ポップするページが背景色に変わります。

コードの最初のページ:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<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>
<link rel="stylesheet" href="css/style.css" />
</head>
<body>
<h1>first page</h1>
<p>I am the first page!</p>
<a href="page1.html" data-transition="pop">page 1</a>
</body>
</html>

コードの 2 ページ目:

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">

<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>
<style>
  .ui-page { background: #F00;}
</style>
</head>
<body>

    <h1>second</h1>
    <p>I am the second page!</p>
    <a href="../index.html" data-transition="slidefade">first page</a>
</body>
</html>

インターネットで多くの方法を試しましたが、次のような方法は何も機能していないようです:

<style>
  .ui-page { background: #F00;}
</style>

これは2番目のページを更新すると機能しますが、最初のページのリンクをクリックして2番目のページに遷移し、背景色を変更すると機能しません...

4

0 に答える 0