为什么这不起作用?
<button class="btn btn-primary btn-lg" onClick="location.href='http://anothersitehere.com/file.pdf'">Download PDF</button>
答案 0 :(得分:8)
你可以试试这个
<a class="btn btn-primary btn-lg" href="http://anothersitehere.com/file.pdf">
Download PDF
</a>
答案 1 :(得分:2)
将location.href
留空并在javascript函数中提供
document.location.href='page.php?variable='+value;
它会重定向到您想要的页面。
答案 2 :(得分:0)
似乎它正在努力转到该链接。我正在使用Chrome btw。