我想找出一种简单的方法,使用jQuery在单击文本链接时触发下载。此外,单击后,用户将重定向到成功页面。有人可以帮忙吗?
答案 0 :(得分:11)
假设您有一个指向下载页面的链接
<a class="downloadLink" href="www.example.com/foo.pdf">Download</a>
在您的Javascript中:
$(".downloadLink").click(
function(e) {
e.preventDefault();
//open download link in new page
window.open( $(this).attr("href") );
//redirect current page to success page
window.location="www.example.com/success.html";
window.focus();
}
);