使用jQuery打开Goog​​le Docs的PDF链接

时间:2010-04-06 03:49:15

标签: jquery pdf google-docs

我已经设置了pdf链接。我只是想使用jQuery在我当前的href前面添加Google的语法。我知道以下不起作用,但我觉得我很接近......?

jQuery(document).ready(function() {
jQuery("a[href$=.pdf]").attr("href", "http://docs.google.com/viewer?url=" + current.href);
});

无论如何可以帮忙吗?

1 个答案:

答案 0 :(得分:2)

只要您在原始文档中有绝对URL,就可以使用以下内容。

$(document).ready(function() {
    $("a[href$='.pdf']").each(function(){
        $(this).attr('href', 'http://docs.google.com/viewer?url=' + $(this).attr('href'));
    });
});​