我看到了这个添加 nofollow 标记,但我如何排除更多域。该脚本仅允许 1 个网址。谢谢
jQuery(document).ready(function () {
jQuery('a[href*="http://"]:not([href*="http://domain.com/"])').attr('rel', 'nofollow');
jQuery('a[href*="https://"]:not([href*="http://domain.com/"])').attr("target", "_blank");
});