私は年内に製品/顧客のテーブルを持っています:jQueryでサマリーテーブルを作成するには?
私は各顧客をチェックインすると、顧客の列が非表示になっていると、各顧客のテーブルの列が表示されます。
これで商品数量のサマリーテーブルを作成する必要がありました。
表
<div class="container">
<p>
<input type="checkbox" name="John" checked="checked" /> John</p>
<p>
<input type="checkbox" name="Adam" checked="checked" /> Adam</p>
<p>
<input type="checkbox" name="Paul" checked="checked" /> Paul</p>
<h2>Customers Table</h2>
<p>Customer with Table</p>
<table class="table">
<thead>
<tr>
<th>Year/Product Quantity</th>
<th class="John">John</th>
<th class="Adam">Adam</th>
<th class="Paul">Paul</th>
</tr>
</thead>
<tr>
<th>2010</th>
<th class="John">10</th>
<th class="Adam">20</th>
<th class="Paul">30</th>
</tr>
<tr>
<th>2011</th>
<th class="John">20</th>
<th class="Adam">40</th>
<th class="Paul">60</th>
</tr>
<tr>
<th>2012</th>
<th class="John">30</th>
<th class="Adam">80</th>
<th class="Paul">70</th>
</tr>
</table>
</div>
そしてスクリプトjsのは次のとおりです。
$("input:checkbox:not(:checked)").each(function() {
var column = "table ." + $(this).attr("name");
$(column).hide();
});
$("input:checkbox").click(function(){
var column = "table ." + $(this).attr("name");
$(column).toggle();
});
例:私はジョン、アダムにチェックすると
したがって、サマリー表は、2の量を合計します列(10 + 20 = 30)をチェックし、チェックインした列の平均と条件を調べます。ただ、この表のように
:
<p>Summery Table</p>
<table class="table">
<thead>
<tr>
<th>Year/Product Quantity</th>
<th>Average</th>
<th>Condition</th>
</tr>
</thead>
<tr>
<th>2010</th>
<th>15</th>
<th>Good</th>
</tr>
<tr>
<th>2011</th>
<th>40</th>
<th>Good</th>
</tr>
<tr>
<th>2012</th>
<th>60</th>
<th>Good</th>
</tr>
</table>
レッツ、> 10平均場合は、そうでない場合は、悪い良いです。
私はこのテーブルをJavascript/jQueryでどのように作成できますか? 私を助けてください。
私は、あなたがHTMLの構造を変更する必要があると思います。なぜなら、クラス名を使用して数量を取得するときには、何らかの問題に直面するからです。私はあなたがデータ属性 – Jayanta
を使用する必要があると思いますか?丁寧に説明してください。 –
はい私は $( "入力:チェックボックス:ありません(チェック)")。 var column = "table" + $(this).attr( "name"); $ (列).hide(); }); $( "入力:チェックボックス"()関数(){ VAR列= "テーブル。" + $(この).ATTR( "名前")をクリックしてください。 $(列).toggleを(); 。 // test 1 var checkbox = $( 'input [type = "checkbox"]:checked); $ .each(checkbox、function(index、el)){ var checkbox_name = $(el).attr('名前 ')、 td_text = $( "テーブル" + checkbox_name)の.text(); にconsole.log(checkbox_name、td_text); }); })。 – Jayanta