如何在框架内建立按钮链接

时间:2015-01-17 17:43:21

标签: html css button hyperlink zurb-foundation

好的,所以基本上我试图从框架的按钮链接一个网页。

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

然而,这重定向到 example.com/snipplr.com/placeholder, 想要的链接是 snipplr.com/placeholder情况并非如此。我也不打算使用HTML的按钮,这是所有其他问题的建议解决方案

我目前正在使用基础框架,与Bootstrap相关,感谢您阅读和提供帮助,不会提交快速回复,因为我将退出并在6小时后回来。

度过愉快的一天

1 个答案:

答案 0 :(得分:0)

尝试在链接中添加协议

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

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

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