Retour haut de la page avec Jquery Mobile

Je suis la construction d'un mobile webapp avec jquery mobile. Maintenant, je veux faire un back to top action.
Normalement, vous devriez le faire, comme le code ci-dessous.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>
<title>Body ID For Top Anchor Demo</title>
</head>

<!-- NOTICE: ID in Body Tag. -->
<body id="top">

<h1>
This Is My Demo
</h1>

<p style="margin-bottom: 3000px ;">
This paragraph has a huge ass bottom margin
so that the page will definitely scoll and
put the following link below the page fold.
</p>

<p>
<!--
This link will jump back up to the ID:top in
the document. Since that is the ID of the body
tag, this link will jump to the top of the page.
-->
<a href="#top">Back To Top</a>
</p>

</body>
</html>

Mais le # est en jquery mobile utilisé pour relier des pages internes, de sorte que la méthode ci-dessus ne fonctionne pas. Quelqu'un sait comment le faire correctement?

Salutations.

InformationsquelleAutor Steaphann | 2012-03-20