所以这是我的链接
<a href="www.site.com/get_myinfo" onclick="check_navigation_exist('info');" >
my info </a>
这就是我要的
function check_navigation_exist(wher_togo){
if(typeof(navigator) != 'undefined'
&&
$.isFunction(navigator))
{
navigator(wher_togo);
return false ;
}
else
return ;
}
function navigator(where)
{
$('#profile_main').html('<img src="'+image_url+'loader.gif" />');
$.post(base_url+'profile/'+where , function(data){
$('#profile_main').html(data);
if(where != 'get_edit')
odd();
})
}
function odd(color){
color = typeof(color) == 'undefined' ? '#DCEABB' : color ;
$('tr:odd').css('background-color' , color );
}
但它不会阻止链接导航