是否可以使用书签来打开包含某些唯一href的页面上的所有URL? (比如 aggregator / h 或其他东西,最好不是复杂的正则表达式)。我正在查看jQuery.each + window.open(Firefox设置为在选项卡中打开所有新窗口,禁用popupblocker)但无法弄清楚如何执行if语句。
答案 0 :(得分:3)
您可以使用attribute contains selector
。
$('a[href*="aggregator/h"]').each(function(){
window.open(this.href);
});