1
こんにちは、これは可能ですか?私は何をしたいのか、この値を取得するためのjqueryで.findを正しく使用する方法
よう$(document).ready(function(){
$('body').delegate('#check-hide-empty-table', 'click', function(){
if ($(this).is(':checked')) {
alert("checked")
$('table').find('tr td.test').parents('tr').hide();
}
else {
alert("uncheck")
$('table').find('tr td.test').parents('tr').show();
}
});
とPHPファイル
</script>
<table id="myTable" class="table table-responsive table-hover table-striped table-fixed tablesorter">
<thead>
<th><input type="checkbox" value="hide" id="check-hide-empty-table"> Hide Empty</th>
</thead>
<tbody>
<?php
$first = false;
foreach ($data["data"] as $list) {
$isfull = $list["Players"] == $list["MaxUsers"] ? true : false;
?>
<tr class="tabClicker" data-tab="tabs-1" id="<?=$list["Id"];?>">
<td class= "test"><?= $list["Players"]."/".$list["MaxUsers"];?></td>
</tr>
<?php } ?>
</tbody>
</table>
は私がするとき$リスト[ "プレーヤー"] = 0隠しchechbox関数を作成したいが、私はどのように混乱しています、ですそれに私は.find(TRのtd.test)= 0場合、そのテーブルは
それをどのように行うには
を非表示になりとテイク値 .find(TRのtd.test)を使用しようとしましたか?このコードはまだエラーです。助けてくれてありがとう
感謝の男が、**
うんです - それは完全にうまくいくと私はそれを修正する方法もあります。 –