gpt4 book ai didi

javascript - 我的 table 上有一个随机的反斜杠

转载 作者:行者123 更新时间:2023-11-30 11:54:12 28 4
gpt4 key购买 nike

<分区>

有人请帮助我。我的 html 一直在我的表格顶部放置一个反斜杠“\”。我不知道还能怎么解释。它就在那里。如果我注释掉我的表格标签,它就会消失。如果我通过开发工具查看 HTML,它会将斜线显示为:

"
\
" ==$0

我在页面上有脚本,但我已经尝试将它们全部注释掉......它仍然会创建这个随机反斜杠。这是有问题的 HTML 片段。

<div id="name_e" class="tabcontent" style="display: block">
<h2>MY NAME</h2>
<h3>Contact Information</h3>
<table>
<tr>
<th>Phone Number:</th>
<td>555-555-5555</td>
</tr>
<tr>
<th>Email Address:</th>\
<td>email@gmail.com</td>
</tr>
<tr>
<th>Address:</th>
<td>111 Address Road</td>
</tr>
<tr>
<th>City:</th>
<td>Cityville</td>
</tr>
<tr>
<th>State:</th>
<td>Atlantis</td>
</tr>
<tr>
<th>Zip Code:</th>
<td>55555</td>
</tr>
</table>
</div>

所以...我迷路了。我完全迷路了。请帮忙。我在这里没有想法......

picture

28 4 0