JSFiddle - React, Tailwind, and code Playground
HTML
Simplicityの<span class="slink">アドセンス</span>とキーワードが含まれる検索結果を表示します
JavaScript
(function($){
$(function(){
$(".slink").each(function(){
var siteAddress = "https://wp-simplicity.com/?s=",
key = $(this).text(),
url = siteAddress + encodeURIComponent(key);
$(this).wrap("<a href='"+url+"' target='_blank'>");
});
});
})(jQuery);