我想在新标签中打开我们文章正文中的所有链接,除了我们目录中的任何哈希链接。
我确定这很简单,但我不确定如何指定不包含 TOC
用于在新选项卡中打开文章主要内容中的链接的 Javascript:
$(".single-post .entry-content p a").attr("target","_blank");
示例文章 HTML
<h2>Jump Ahead!</h2>
<a href="#one">Header One</a>
<a href="#two">Header Two</a>
<h2><a name="one"></a>Header One</h2>
This is an example of a link that should open in a new tab <a href="https://example.com">New Tab</a>.
<h2><a name="two"></a>header Two</h2>
关于如何不让 #one 和 #two 打开新标签但在新标签中打开 example.com 的任何想法?
智慧大石
慕容森
相关分类