そのため、サイトの URL 文字列のループの例があり、ページをリンクに追加しようとしていますが、ドメインが修正されているため、ドメインを処理する必要はありません。今はうまくいきません..しかし、私はそれを修正しようとしています.
<script>
$(document).ready(function() {
url = $(this).attr('href', $(this).attr('href'));
$('#sitemap a').attr('href','http://site.com/?c=123&p='+url);
});
</script>
// trying to get output http://site.com/?c=123&p=page1.html
<div id="sitemap">
<a href="page1.html">test</a>
<a href="page2.html">test</a>
<a href="page3.html">test</a>
</div>