1

是否可以有一个小书签来打开包含某些唯一 href 的页面上的所有 URL?(比如aggregator/h什么的,最好不要复杂的正则表达式)。我正在查看 jQuery.each + window.open (Firefox 设置为在选项卡中打开所有新窗口,popupblocker 已禁用)但无法弄清楚如何执行 if 语句。

4

1 回答 1

3

你可以使用attribute contains selector.

$('a[href*="aggregator/h"]').each(function(){
    window.open(this.href);
});
于 2012-07-31T06:20:54.147 回答