如何在框架内制作按钮 link

How to make buttons link within a framework

好的,所以基本上我是在尝试从框架的按钮link一个网页。

<a href="snipplr.com/placeholder" class="button expand secondary text-left" > <h2>'.$row['title'].'</h2></a>

然而,这重定向到 example.com/snipplr.com/placeholder, 打算 link 想要的是 snipplr.com/placeholder 事实并非如此。我也不打算使用 HTML 的按钮,它一直是其他问题的建议解决方案

我目前正在使用与 Bootstrap 相关的 Foundation Framework,感谢您的阅读和提供帮助,不会提交快速回复,因为我将在 6 小时后返回。

祝你有愉快的一天

尝试向 link

添加协议
<a href="//snipplr.com/placeholder"....

<a href="https://snipplr.com/placeholder"...

<a href="http://snipplr.com/placeholder"....