Cakephp - 如何在输出中添加删除线

时间:2016-07-02 03:57:14

标签: html css cakephp-3.0

我有输出<td><?= h($book->price) ?></td>现在我想在$book->sales_price不为空时向输出添加删除线标记。我如何添加删除线的代码?

if($book->sales_price){
//add strikethrough
}

非常感谢!

1 个答案:

答案 0 :(得分:0)

使用删除标记<s> Sample Text </s><strike> Sample Text </strike>

示例文本

if(is_null($book->sales_price)) {
  <td><?= h($book->price) ?></td>
} else {
  <td><s><?= h($book->price) ?></s></td>
}