【发布时间】:2014-04-26 14:21:01
【问题描述】:
这里是我的html
<a class="downloadLink" href="http://domainname.com/sample.pdf"></a>
这是我的 jquery
jQuery(".downloadLink").click(
function(e) {
e.preventDefault();
//open download link in new page
window.open( jQuery(this).attr("href") );
//redirect current page to success page
window.location="http://domainname.com/new-location";
window.focus();
}
);
此代码是工作文件,但需要它在同一窗口中下载 pdf,然后使用同一窗口重定向到新位置。
提前致谢。
【问题讨论】: