为什么在添加社交媒体共享链接后不显示锚点

发布于 2025-01-22 06:08:04 字数 886 浏览 0 评论 0原文

我正在研究Laravel应用程序,并试图添加社交共享选项。但是,鲍洛代码不起作用,标签没有显示!

<a href="https://www.facebook.com/sharer.php?u={{ route('single-course', $course->slug) }}" target="_blank" class="facebook"><i class="fa-brands fa-facebook-f"></i></a>
<a href='https://twitter.com/share?url={{ route('single-course', $course->slug) }}' target="_blank" class="twitter"><i class="fa-brands fa-twitter"></i></a>

波纹管代码也无法正常工作,锚定标签被隐藏了!

<a href="https://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer.php?u=https://www.google.com" target="_blank" class="facebook"><i class="fa-brands fa-facebook-f"></i></a>
<a href='https://twitter.com/share?url=https://www.google.com/' target="_blank" class="twitter"><i class="fa-brands fa-twitter"></i></a>

I am working on a Laravel application and trying to add social share options. But bellow codes are not working and tag not showing!

<a href="https://www.facebook.com/sharer.php?u={{ route('single-course', $course->slug) }}" target="_blank" class="facebook"><i class="fa-brands fa-facebook-f"></i></a>
<a href='https://twitter.com/share?url={{ route('single-course', $course->slug) }}' target="_blank" class="twitter"><i class="fa-brands fa-twitter"></i></a>

Bellow codes are also not working and anchor tag become hidden!

<a href="https://www.facebook.com/sharer.php?u=https://www.facebook.com/sharer.php?u=https://www.google.com" target="_blank" class="facebook"><i class="fa-brands fa-facebook-f"></i></a>
<a href='https://twitter.com/share?url=https://www.google.com/' target="_blank" class="twitter"><i class="fa-brands fa-twitter"></i></a>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

油饼 2025-01-29 06:08:04

插入之间的文本将显示为链接。您什么也没插入。因此,链接似乎隐藏了

<a>Insert some text here</a>

<a><i>In your case,insert some text here to display</i></a>

The text inserted in between will be displayed as a link. You have inserted nothing. So, the link seems like hidden

<a>Insert some text here</a>

<a><i>In your case,insert some text here to display</i></a>
清眉祭 2025-01-29 06:08:04
  1. 图标的高度或宽度正确?默认情况下,锚元素
    从其内容中获取大小。
  2. Fontawesome图标是否正确添加到您的页面上?也许CDN缺少...
  1. The icons have correct height or width? By default, the anchor element
    takes the size from its content.
  2. Are the fontawesome icons correctly added to your page? Maybe the CDN is missing...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文