我在上面的脚本中遇到了一些问题。脚本效果很好,但问题是我似乎无法弄清楚如何在wordpress分页中添加一个类。需要明确的是,这是针对单个帖子分页(使用)。为了使脚本工作,我需要引用这个锚标记。有关如何将类添加到此锚标记的任何想法吗?
$(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
$('a.pagination-link').each(function () {
var href = $(this).attr('href');
$(this).attr('href', href + query_string);
});
});
答案 0 :(得分:0)
将它放在your.each()循环中的匿名函数中:
$(this).addClass('name-of-your-class');