2014-09-11 150 views
2

任何原因,這將無法正常工作?bootstrap按鈕onclick和location.href

<button class="btn btn-primary btn-lg" onClick="location.href='http://anothersitehere.com/file.pdf'">Download PDF</button> 
+1

作爲HTML屬性,onclick應該全部小寫(而不是onClick)。 – Zach 2014-09-11 03:49:33

+0

謝謝,最近我的腦中有太多的JS了。雖然這並不能解決我的問題,對嗎? (剛剛試過) – Macness 2014-09-11 03:51:59

+0

你能提供一個小提琴鏈接嗎? – VPK 2014-09-11 03:52:57

回答

0

看來它正在努力去關聯。我使用Chrome btw。

+0

你是對的 - 由於某種原因,它不想在WordPress預覽中工作。但一旦我發表了它 - 它的工作。 – Macness 2014-09-11 03:59:46

5

你會用這個代替

<a class="btn btn-primary btn-lg" href="http://anothersitehere.com/file.pdf"> 
    Download PDF 
</a> 
2

離開location.href空白,並在JavaScript嘗試功能給

document.location.href='page.php?variable='+value; 

會重定向到你想要的頁面。