任何原因,這將無法正常工作?bootstrap按鈕onclick和location.href
<button class="btn btn-primary btn-lg" onClick="location.href='http://anothersitehere.com/file.pdf'">Download PDF</button>
任何原因,這將無法正常工作?bootstrap按鈕onclick和location.href
<button class="btn btn-primary btn-lg" onClick="location.href='http://anothersitehere.com/file.pdf'">Download PDF</button>
看來它正在努力去關聯。我使用Chrome btw。
你是對的 - 由於某種原因,它不想在WordPress預覽中工作。但一旦我發表了它 - 它的工作。 – Macness 2014-09-11 03:59:46
你會用這個代替
<a class="btn btn-primary btn-lg" href="http://anothersitehere.com/file.pdf">
Download PDF
</a>
離開location.href
空白,並在JavaScript嘗試功能給
document.location.href='page.php?variable='+value;
會重定向到你想要的頁面。
作爲HTML屬性,onclick應該全部小寫(而不是onClick)。 – Zach 2014-09-11 03:49:33
謝謝,最近我的腦中有太多的JS了。雖然這並不能解決我的問題,對嗎? (剛剛試過) – Macness 2014-09-11 03:51:59
你能提供一個小提琴鏈接嗎? – VPK 2014-09-11 03:52:57