因此,我有一个站点 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>