0

我有这个代码:

function Imagehover(obj,img){               
    jQuery("#"+obj.id).attr("src","<?php echo $this->baseurl ?>/templates/codecraft.gr/images/"+img+".png");            
}
function Imageclick(obj,img){                               
    jQuery("#"+obj.id).attr("src","<?php echo $this->baseurl ?>/templates/codecraft.gr/images/"+img+".png");        
}
function Imageout(obj,img){                                                                     
    jQuery("#"+obj.id).attr("src","<?php echo $this->baseurl ?>/templates/codecraft.gr/images/"+img+".png");                                
}

<a href="<?php echo JURI::root(); ?><?php echo $langsefs->sef;?>"><img id="<?php echo $langsefs->sef;?>flag" style="height: 40px;margin-right: 10px;width: 47px;" src="<?php echo JURI::root(); ?>/templates/codecraft.gr/images/<?php echo $langsefs->sef; ?>_flag.png" onclick="Imageclick(this,'<?php echo $langsefs->sef; ?>_flag_pressed')" onmouseout="Imageout(this,'<?php echo $langsefs->sef; ?>_flag')" onmouseover="Imagehover(this,'<?php echo $langsefs->sef; ?>_flag_over')" alt="<?php echo $langsefs->sef; ?>"/></a>

但是,当我单击标志时,图像消失,然后 href 的重定向执行到新页面。当我删除图像的 onclick 事件时

function Imageclick(obj,img){                               
    //jQuery("#"+obj.id).attr("src","<?php echo $this->baseurl ?>/templates/codecraft.gr/images/"+img+".png");      
}

图像不会消失。所以我认为 onclick 事件触发并尝试从服务器获取图像,但是由于 href 也被执行,图像没有机会进入用户的浏览器,因为页面重定向已经开始。

如何确保图像下载到用户的浏览器然后进行重定向,而不需要删除 href 属性?

4

2 回答 2

2

你可以使用event.preventDefault()

如果调用该方法,则不会触发事件的默认动作。

$('a').click(function(e){
   e.preventDefault();
   var href = $(this).attr('href');
   $("#"+obj.id).attr("src","<?php echo $this->baseurl ?>/templates/codecraft.gr/images/"+img+".png").promise().done(function(){
      window.location = href;
   })        
})
于 2012-07-06T20:33:10.920 回答
0

从事件处理程序返回 false 以防止默认行为。如果您希望页面地址在之后立即更改,则可能需要在替换图像后在每个处理程序中放置位置重定向。

于 2012-07-06T20:32:45.390 回答