我有输出<td><?= h($book->price) ?></td>
现在我想在$book->sales_price
不为空时向输出添加删除线标记。我如何添加删除线的代码?
if($book->sales_price){
//add strikethrough
}
非常感谢!
答案 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>
}