$(document).on("click", "a", function(event){
//тут ajax()
event.preventDefault();
//переход не выполнен
});
...
$.ajax({
'url':$(this).attr('href'),
success:function(responce){
console.log('страница', responce);
}
});
...
...
$("#mycity").html(responce);
...
<a href="http://ссылка/country=russian" data-target="mycity">Россия</a>
...
var target = $(this).attr('data-target');
$(target).html(responce);
...
$model = Myclass::find()->where(['id'=>$id, 'parent_id'=>$parent_id])->onWhere(['parent_id'=>''])->limit(10)->all();