ページにいくつかのhtmlがあります。フッターでは、Today ボタンと Refresh ボタンをコントロール グループと同じ行に配置し、ボタンを左右に配置し、コントロール グループを中央に配置します。jQuery Mobile でこれを行う簡単な方法はありますか?
<div data-role="page" id="display_appointments">
<div data-theme="a" data-role="header">
<a href="#" data-icon="delete">Menu</a>
<h3>
Appointments
</h3>
<a href="#" data-icon="delete">Add</a>
</div>
<div data-role="content">
Appointments here
</div>
<div data-theme="a" data-role="footer" data-position="fixed">
<a href="#display_appointments" data-role="button">Today</a>
<div data-role="controlgroup" data-type="horizontal">
<a href="#display_appointments" data-role="button">Day</a>
<a href="#display_appointments_list" data-role="button">List</a>
<a href="#display_appointments_month" data-role="button">Month</a>
</div>
<a href="#display_appointments" data-role="button">Refresh</a>
</div>
</div>