duanrong3308 2017-08-01 19:04
浏览 609
已采纳

在TD中的数据之间添加换行符

Looking for a way to add a line break in between the text in TD. Which is always different. I'm guessing the detecting factor would be the space between.

<tr class="garment">

  <td>Garment:</td>

  <td>gildan white 4s  basic red 10m</td>

</tr>

This would be the result im looking for

  <td>Garment:</td>


<td>gildan<br>white<br>4s<br><br>basic<br>red<br>10m</td>


</tr>

This is the code in my PHP if that helps at all. Thanks!

    <tr class="' . ($counter++ % 2 ? "odd" : "even") . '">

  <td>Garment:</td>

  <td>' . $result['garment_type'] . '</td>

</tr>

Desired code after BR splits

<tr class="garment">

  <td>Type:</td>

  <td>gildan<br>white<br>4s<br></td>

</tr>

<tr class="garment">

  <td>Type:</td>

  <td>basic<br>red<br>10m<br></td>

</tr>
  • 写回答

1条回答 默认 最新

  • doushi1510 2017-08-01 19:08
    关注

    Change:

    <td>' . $result['garment_type'] . '</td>
    

    to

    <td>' . str_replace(' ', '<br />', $result['garment_type'] ) . '</td>
    

    This will generate the following HTML:

    <td>gildan<br>white<br>4s<br><br>basic<br>red<br>10m</td>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 爬虫爬取网站的一些信息
  • ¥15 关于vue2中methods使用call修改this指向的问题
  • ¥15 idea自动补全键位冲突
  • ¥15 请教一下写代码,代码好难
  • ¥15 iis10中如何阻止别人网站重定向到我的网站
  • ¥15 滑块验证码移动速度不一致问题
  • ¥15 Utunbu中vscode下cern root工作台中写的程序root的头文件无法包含
  • ¥15 麒麟V10桌面版SP1如何配置bonding
  • ¥15 Marscode IDE 如何预览新建的 HTML 文件
  • ¥15 K8S部署二进制集群过程中calico一直报错