0

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>      
4

1 に答える 1

0

次の jQuery コードを使用して、選択したオプションを見つけることができます。

<script>
$(document).ready(function () {
var yourTimezone = $('#selectID').find(":selected").text();
});
</script>
于 2013-07-10T20:50:38.360 に答える