我有一段代码来获取查询字符串,并在整个单个帖子的分页中继续执行它。问题是我找不到正确选择分页链接的方法来应用此代码。以下是查询字符串的代码:
<script>
$(document).ready(function() {
// Gets the query string
var query_string = window.location.href.slice(window.location.href.indexOf('?'));
// Appends query string to each pagination link
$('li.testlink a').each(function () {
var href = $(this).attr('href');
$(this).attr('href', href + query_string);
});
});
</script>
问题出在li.testlink a
的位置,我无法选择分页链接的锚标记:
<li class="testlink">
<a href="http://lmfaofacts.com/top-10-strongest-animal-bites/">
<span class="page-numbers">Previous page</span>
</a>
<a href="http://lmfaofacts.com/top-10-strongest-animal-bites/3/">
<span class="page-numbers">Next page</span>
</a>
</li>
有关如何将类附加到该锚标签以选择它或其他方法的任何想法?只是简单地使用带有<div>
s / <li>
的CSS样式选择器似乎不起作用。谢谢!