如何在PHP代码

时间:2016-11-10 07:15:52

标签: javascript php jquery

当表格列selection的值不是none时,我需要隐藏所有按钮。然后如何在PHP代码中使用javascript或jquery来禁用按钮。建议欢迎使用javascript或jquery中的php代码完成此任务。我有按钮列表如下。

<?php include("db_conection.php");$sql = "SELECT selection FROM users";
$result = $dbcon->query($sql);
if ($result->num_rows > 0) {
while($row = $result->fetch_assoc()) {
$value = $row['selection']; 
if($value !='none'){
//need to add jquery or javascript here 
//$('button').attr("disabled", "disabled");
//$('button').text('Disabled');    
}
}
}?>  
<script type="text/javascript" >
  // $('button').attr("disabled", "disabled");
  // $('button').text('Disabled');  
  < /script>

    <tr>
      <td>
        <button type="button" class="btn btn-primary" id="q1-1">Q1-1</button >
  < /td>
      <td>
        <button type="button" class="btn btn-primary" id="q2-1">Q2-1</button >
  < /td>
      <td>
        <button type="button" class="btn btn-primary" id="q3-1">Q3-1</button >
  < /td>
      <td>
        <button type="button" class="btn btn-primary" id="q4-1">Q4-1</button >
  < /td>
    </tr >

1 个答案:

答案 0 :(得分:0)

尝试首先在文本元素中传递值:

<input type"text" id="sampleValue" value="<?php echo($value)> // this will put the value in a text element.

之后,您可以通过其ID在JQuery中使用它。

<script type="text/javascript" >
   if($('#sampleValue')!='none') {
      $('button').attr("disabled", "disabled");
      $('button').text('Disabled');
   }
</script>