在CS5 Dreamweaver中使用列表/菜单表单?

时间:2014-02-21 00:51:06

标签: html css paypal dreamweaver flash-cs5

我正在尝试为用户创建一种选择付款方式(借记卡,信用卡或PayPal)的方式。根据他们选择的价值,我想提出一个新的付款信息菜单(卡#等)。我该怎么做呢?

以下是代码:

Payment Method
<select name="Payment" id="Payment">
<option>Debit</option>
<option>Credit</option>
<option>PayPal</option>
</select>
</form>

1 个答案:

答案 0 :(得分:0)

这是一个FIDDLE,可以让你开始。

JS

$('#payment').change(function(){
              var selection = $('#payment').val();
              $('.putmehere img').hide();
              if(  selection == 'd')
                   {
                    $('#debit').show();
                    }
              if(  selection == 'c')
                   {
                    $('#credit').show();
                    }
              if( selection == 'p')
                   {
                    $('#paypal').show();
                    }

});