2

簡単に言うと、simplecart(JS) をセットアップしており、複数のオプションに対してチェックボックスを使用しています。#tax div. これどうやってするの?

 <script type="text/javascript">
simpleCart.tax = function(){
    if( $("#regionSelect").val() == "VAT 21% €90" ){return 90;}
    if( $("#regionSelect").val() == "World (Taxfree)" ){return 0;}
};
</script>


  <input type="checkbox" name="tax" id="regionSelect" class="item_tax" value="eu" onClick="">Eu VAT 21%
  <input type="checkbox" name="tax" id="regionSelect" class="item_tax" value="world"onClick="">World (Tax Free)   
  </dd>


<div id="tax"></div

アップデート

これを正確にどこに追加しますか?

これは後のものに対してのみ機能します。

    if( $("#regionSelect").val() == "eu" ){return 90;} $("#tax").html("VAT 21% €90")
    if( $("#regionSelect").val() == "world" ){return 0;} $("#tax").html("World (Taxfree)")
4

3 に答える 3

1

以下のようなhtml関数を利用します。

$("#divid").html("World (Taxfree)")
于 2013-09-19T15:25:04.290 に答える