簡體   English   中英

單擊html中的下載鏈接后重定向

[英]Redirect after clicking download link in html

我的頁面上有一個鏈接,可下載PDF文件,但是當他們單擊任一下載鏈接后,我想將它們帶到另一頁。

該頁面為他們提供了選擇下載文件的2種選擇之一,但我只希望允許他們做出選擇,然后退出到另一頁面。

我的代碼如下:

<div class="columns medium-6">
    <h3 class="text-center">7 Tips for Creating a <br />Happy Workplace</h3> <img src="https://www.maylake.com.au/_assets/images/mini-guide/bookcover-7-tips-workplace.png" height="250px" alt="7 Tips for Creating a Happy Workplace eBook">
    <p style="font-size: 18px;" class="text-center">Discover how you can make your workplace a healthier environment by simply making being a happy place to work for everyone</p>
    <div class="choose">
        <input type="radio" name="choice-books" id="choice-7-tips">
        <label>I would like to receive a copy of the eBook</label>
        <div class="reveal-if-active">
            <p class="text-center"><a href="/LiteratureRetrieve.aspx?ID=192014" class="button radius text-center">DOWNLOAD Now</a> </p>
        </div>
    </div>
</div>
<div class="columns medium-6">
    <h3 class="text-center">Your Short Guide to Leasing a Commercial Office Space</h3> <img src="https://www.maylake.com.au/_assets/images/mini-guide/bookcover-leasing-commercial-office.png" alt="Guide to Leasing Commercial Office" height="250">
    <p style="font-size: 18px;" class="text-center">Understand what you should be considering before leasing any commercial office space. Being forewarned and prepared could save you lots
        of money and grief</p>
    <div class="choose">
        <input type="radio" name="choice-books" id="choice-leasing">
        <label for="choice-leasing">I would like to receive a copy of the eBook</label>
        <div class="reveal-if-active">
            <p class="text-center"><a href="/LiteratureRetrieve.aspx?ID=192012" class="button radius text-center">DOWNLOAD Now</a> </p>
        </div>
    </div>
</div>

我會將您的a元素更改a內容:

<a target="_blank" href="/LiteratureRetrieve.aspx?ID=192014" class="button radius text-center" onclick="window.location='http://google.com';">DOWNLOAD Now</a> 

這將使他們在下載pdf的同時將它們轉到google.com。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM