<a> href 属性将当前页面 URL 添加到重力表单 html 字段中构建的链接



在重力表单中构建表单时,我们在表单中放置了一些HTML块,这些块仅在给出特定答案时才会显示(用于个性测验(。表单中使用的 html 示例如下所示:

<table style="border: none;">
<tbody>
<tr>
<td style="width: 40%; text-align: center;">
<img src="https://familytraveller.com/wp-content/uploads/2017/07/Bobbis-Cools-ES-Palette-300x300.jpg">
</td>
<td style="width: 60%; padding: 0 0 0 30px;"><h3>You chose City Break: Bobbi’s Cools Eye Shadow Palette</h3>
<p>Take along the ultimate eye shadow palette, designed by Bobbi Brown to make it easy for any woman to create endless standout eye looks.
<a href=“http://lhrt4.worlddutyfree.com/lhrt4_en/bobbi-brown-palette-2.html“><h3>Buy it here</h3></a></p></td>
</tr>
</tbody>
</table>

尽管提供了完整的 url,并且源代码显示了正确的 href 属性,但链接的页面的 url 将附加到 href 中的 url 中,但链接的页面的 url 无法正常工作。例如,在这种情况下,链接指向 "https://familytraveller.com/travel-tips/summer-sunshine-beauty-quiz/http://lhrt4.worlddutyfree.com/lhrt4_en/bobbi-brown-palette-2.html" .

我不明白为什么会发生这种情况。如何阻止这种情况发生?是因为链接在表单中吗?谢谢。

我用单引号替换了 href 属性中的双引号 ("..."(,这解决了问题

相关内容

  • 没有找到相关文章

最新更新