6

如何.pdf使用 jQuery 在新窗口中打开所有带有文件扩展名的链接?我需要改变这个:

<a href="domain.com/pdf/parkingmap.pdf">parking map</a>

对此:

<a href="domain.com/pdf/parkingmap.pdf" target="_blank">parking map</a>

/pdf如果有帮助,所有文件都在一个文件夹中。

4

4 回答 4

21

为此,您可以选择任何具有以结尾的属性a的元素,并为其添加一个属性。尝试这个:href.pdftarget="_blank"

$(function() {
    $('a[href$=".pdf"]').prop('target', '_blank');
});
于 2013-01-03T14:06:39.137 回答
3

一种方法,假设您希望以结尾的链接pdf在同一页面中打开:

$('a').click(
    function(e){
        e.preventDefault();
        if (this.href.split('.').pop() === 'pdf') {
            window.open(this.href);
        }
        else {
            window.location = this.href;
        }
    });
于 2013-01-03T14:08:17.963 回答
2

jQuery one-liner:

$('a[href$=".pdf"]').attr('target','_blank');

Current Javascript:

for (let a of document.querySelectorAll("a")) {
    if (a.href.match("\\.pdf$")) {
        a.target = "_blank";
    }
}

Older browsers :

var anchors = document.body.getElementsByTagName('a');
for (var i = 0; i < anchors.length; i++) {
    if(anchors[i].getAttribute('href').match('\\.pdf$') {
        anchors[i].setAttribute('target', '_blank');
    }
}

Try it here : http://codepen.io/gabssnake/pen/KyJxp

于 2014-11-07T10:42:58.193 回答
1

<a onclick=ViewPdf(test.pdf) href="">


function ViewPdf(FileName) {
    var url = '../Home/GetPDF?fileName=' + FileName;
    window.open(url, '_blank');

}

现在像下面这样写 ActionResult

public ActionResult GetPDF(string fileName)
        {
            try
            {
                byte[] fileData = System.IO.File.ReadAllBytes(Functions.GetConfigValue("CDXFilePath") + fileName);
                string resultFileName = String.Format("{0}.pdf", fileName);
                Response.AppendHeader("Content-Disposition", "inline; filename=" + resultFileName);
                return File(fileData, "application/pdf");
            }
            catch
            {
                return File(Server.MapPath("/Content/") + "FileNotFound.html", "text/html");
            }
        }
于 2019-05-22T14:51:56.517 回答