1
Sivan 2012-02-20 16:56:35 +08:00
选择器用$("a[rel*='external']")
a[rel="external"]')是完全相等。 |
2
sobigfish OP @Sivan 呵呵 解决了,感谢 是windows open兼容好 还是this.target = "_blank";
|
3
sobigfish OP windows open firefox不打开新的 。。。
|
4
Sivan 2012-02-20 17:13:32 +08:00
@sobigfish 我的 Firefox 可以啊。
下面是我用的,不用自己手动加 external,然后带 external 的弹窗打开。 $(document).ready(function(){ $(".entry-content a[href*='http://']:not([href*='"+location.hostname+"'])").attr({rel:"external"}); $("a[rel*='external']").click(function(){window.open(this.href);return false}); }); |