$('a').click(function(){
    window.open(this.href);
    location.href = '本页面跳转的页面'
    return false;//阻止默认事件
})