改变href上的颜色(切换类?)

时间:2015-12-13 01:18:19

标签: php

所以我正在为LAN聚会制作一个座位预订系统我和一些朋友正在安排我在将预订座位从绿色变为红色时遇到问题。 这是所有的预订系统。

if (plusMinus.textContent == "+"){
  if(answer == num1 + num2) {
    feedBack.textContent = "Well Done!";
    totalScore = totalScore + 10;
}

有没有人知道如何做到这一点? 最简单的方法是切换课程,但我在过去2小时内尝试这样做而没有结果。 (对不起我的英文,瑞典老兄在这里)。

1 个答案:

答案 0 :(得分:0)

要回收我的版本你可以使用这个 - 但Liam Wiltshire在我给出链接的页面上的版本更优雅

  // set up the html clips
  if($formPreset['isReserved'] == 1){
  $html_clips = 'occupiedSeat'; 
  }else{
  $html_clips = 'unoccupiedSeat'; 
  }

  echo('<a href="platsBokning.php?id=' . $id . '" class="' . $html_clips . '"       id="' . $id . '" ></a>');

引用类似问题使用if语句切换类 - 在此页面上执行此操作的多种方法https://stackoverflow.com/questions/33714062/how-can-i-make-this-php-lines-sh‌​orter/33714159#33714159

我更喜欢将个人计算机中的php计算保留在html之外,并设置一些小插件进入html。

也许JavaScript可能有所帮助

<script language="javascript">
documentGetElementById("<?php echo $id ?>").style.color = 'red';
</script>