Django、Dajaxice、および JQuery Mobile を使用する小さな Web アプリがあります。
考えられるすべてのタイムゾーンを含むドロップダウン メニューを作成しました。ユーザーがドロップダウンメニューからタイムゾーンを選択してボタンをクリックすると、ボタンが選択されているオプションを取得し、Dajaxice (私はこれを処理します) を使用してそれを MySQL データベースに渡します。
私は JQuery モバイルと JavaScript を初めて使用するので、select とボタンのクリック ハンドラーを作成するのに助けが必要です。コードは次のとおりです。
<!-- TimeZone select section -->
<div data-role="fieldcontain">
<label for="timezone-select" class="select">Choose Timezone:</label>
<select name="timezone-select" id="timezone-select" data-inline="true">
{%for x in timezones%}
<option value="{{x}}" id="option_{{forloop.counter}}" >{{x}}</option>
{%endfor%}
</select>
</div>
<!-- Sumbit TimeZone -->
<div>
<a data-role="button" id="storeTimezone" data-inline="true">Store Timezone</a>
<h1 id="storedTimezone">Stored Timezone: </h1>
</div>