PHP 表格中的复选框


checkbox in table in php

我想有一个包含数据库中单词及其含义的表格,在另一列中,我想为每一行添加复选框,该用户将检查它们并显示他/她知道的单词。在这种情况下,我有两个问题:1-如何在第一次和单击后隐藏含义 显示含义 可见它们?2-如何设置复选框?直到现在我都有这段代码,但它不起作用如果可以的话,请帮助我

<script type="text/javascript">
        function ShowMeanings(){
        document.getElementsByClassName('hiding').item(0).style.visiblility = 'visible';
        }
</script>
<?php
  $con = mysql_connect("localhost", "root", "")
  or die(mysql_error());   
  if (!$con) { 
                                        die('Could not connect to MySQL: ' . mysql_error()); 
                                    } 
                                    mysql_select_db("project", $con)
                                    or die(mysql_error());
                                    $result = mysql_query("select * from words");
                                    echo "<table border='1'>
                                        <tr>
                                        <th>word</th>
                                        <th>meaning</th>
                                        <th>check</th>
                                        </tr>";
                                    while($row = mysql_fetch_array($result))
                                      {
                                      echo "<tr>";
                                      echo "<td>" . $row['word'] . "</td>";
                                      echo "<td>";
                                      echo "<div";
                                      echo "class='hiding' style='visibility:hidden'>" . $row['meaninig'];
                                      echo "</div>";
                                      echo "</td>";
                                      echo "<td>";
                                      echo "<input";
                                      echo "type= 'checkbox' name = 'checkbox' id = 'checkbox' value = '' />";
                                      echo "</td>";
                                      echo "</tr>";
                                      }
                                      echo "</table>";
                                      mysql_close($con);                                                                                   
                                ?>
                                </div>
                                <button onclick="ShowMeanings()">showmeaning</button>
getElementByClassName是一个

不存在的函数。您的意思是 getElementsByClassName ,但是它将返回元素列表,因此您需要选择一个。

document.getElementsByClassName('hiding').item(0).style.visibility = 'visible';

对于隐藏建议:

 echo "class='hiding' style='display:none'>" . $row['meaninig'];

要显示含义:

//for Jquery
<script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript">
        function ShowMeanings(){
           $('.hiding').shoW();
        }
</script>

 //for plain old javascript
    <script type="text/javascript">
                function ShowMeanings(){
                  document.getElementsByClassName('hiding').style.visibility = 'visible';
                }
        </script>

您的代码已编辑:

<html><head>
 <script src="http://code.jquery.com/jquery-1.10.1.min.js"></script>
<script type="text/javascript">
        function ShowMeanings(){
           $('.hiding').shoW();
        }
</script>
</head>
<body>
<?php
  $con = mysql_connect("localhost", "root", "")
  or die(mysql_error());   
  if (!$con) { 
                                        die('Could not connect to MySQL: ' . mysql_error()); 
                                    } 
                                    mysql_select_db("project", $con)
                                    or die(mysql_error());
                                    $result = mysql_query("select * from words");
                                    echo "<table border='1'>
                                        <tr>
                                        <th>word</th>
                                        <th>meaning</th>
                                        <th>check</th>
                                        </tr>";
                                    while($row = mysql_fetch_array($result))
                                      {
                                      echo "<tr>";
                                      echo "<td>" . $row['word'] . "</td>";
                                      echo "<td>";
                                      echo "<div";
                                      echo "class='hiding' style='display:none'>" . $row['meaninig'];
                                      echo "</div>";
                                      echo "</td>";
                                      echo "<td>";
                                      echo "<input";
                                      echo "type= 'checkbox' name = 'checkbox' id = 'checkbox' value = '' />";
                                      echo "</td>";
                                      echo "</tr>";
                                      }
                                      echo "</table>";
                                      mysql_close($con);                                                                                   
                                ?>
                                </div>
                                <button onclick="ShowMeanings()">showmeaning</button>
    </body>