私はiPhone(iOS 5)で実行している簡単なアプリケーションを持っています。これは、バックボタンとヘッダーテキストのサイズと位置を正しく設定していません。ヘッダーのテキストがボタンの下に表示されます。私はjQuery Mobileがボックスの外にあるものとして予想どおりのサイズや位置を設定していないと思います...ボタン付きjQueryモバイルタイトル位置
私は、ヘッダ・テキストが切り捨てられ、バック・ボタンの右側から始まります。タイトルの右側に別のボタンはありませんので、ページの右側に行くと問題ありません。私はthis answerを見なかったが、私は試していたことは、私が望んでいたものを私に取得していないhttp://jsfiddle.net/5n8WN/
:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css"/>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script> </head>
<body>
<div data-role="page">
<div data-role="header">
<a data-icon="arrow-l" data-rel="back">A long button</a>
<h1>A very very very long title</h1>
</div>
<div data-role="content">
<p>Page content goes here.</p>
</div>
<div data-role="footer">
<h4>Page Footer</h4>
</div>
</div>
</body>
</html>
実行可能な例は、です。