How to get child pages and add unique class only to active page?

I made this by jQuery:

$('.sidebar-list li a').filter(function(){
  return this.href === location.href;
}).addClass('active');