为什么在添加社交媒体共享链接后不显示锚点
我正在研究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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
插入之间的文本将显示为链接。您什么也没插入。因此,链接似乎隐藏了
The text inserted in between will be displayed as a link. You have inserted nothing. So, the link seems like hidden
从其内容中获取大小。
takes the size from its content.