1

WordPress E-Commerce プラグインをインストールしました。

チェックアウトページには、数量フィールドの入力フォームと更新ボタンがあります。

好きな数量を入力して製品価格を更新できるように

フォームはすべての製品で次のようになります。

<td class="wpsc_product_quantity wpsc_product_quantity_<?php echo wpsc_the_cart_item_key(); ?>">
  <form action="<?php echo esc_url( get_option( 'shopping_cart_url' ) ); ?>" method="post" class="adjustform qty">
    <input class="span1" type="text" name="quantity" size="2" value="<?php echo wpsc_cart_item_quantity(); ?>" />
    <input type="hidden" name="key" value="<?php echo wpsc_the_cart_item_key(); ?>" />
    <input type="hidden" name="wpsc_update_quantity" value="true" />
    <input class="btn btn-new btn-new-red" type="submit" value="u" name="submit" />
  </form>
</td>

私の仕事は、このフォームを送信する「プラス」と「マイナス」のような2つのボタンを+1または-1にすることです

このフォームを使ってphpやjavascriptで作れますか?

私が欲しいものを通常の方法で説明したことを願っています

4

1 に答える 1

0
<script language="javascript">
    function changeQuantity(v){
        document.getElementById('quantity').value=parseInt(v)+parseInt(document.getElementById('quantity').value);


    }
</script>


<td class="wpsc_product_quantity wpsc_product_quantity_<?php echo wpsc_the_cart_item_key(); ?>">
    <form action="<?php echo esc_url(get_option('shopping_cart_url')); ?>" method="post" class="adjustform qty">
        <!-- Add id -->
        <input class="span1" type="text" id="quantity" name="quantity" size="2" value="<?php echo wpsc_cart_item_quantity(); ?>" />
        <input type="hidden" name="key" value="<?php echo wpsc_the_cart_item_key(); ?>" />
        <input type="hidden" name="wpsc_update_quantity" value="true" />
        <input class="btn btn-new btn-new-red" type="submit" value="u" name="submit" />
        <!--    New added code-->
        <a href="JavaScript:void(0);" onclick="changeQuantity(1);">Plus</a>  <a href="JavaScript:void(0);" onclick="changeQuantity(-1);">Minus</a>
    </form>
</td>
于 2013-03-07T20:46:55.550 に答える