当前位置: 代码迷 >> Web前端 >> ie6上window.location转发有关问题
  详细解决方案

ie6上window.location转发有关问题

热度:107   发布时间:2012-09-22 21:54:54.0
ie6下window.location转发问题

对于jquery 和yui等前端框架来说他们都有阻止默认事件的方法,在调用window.location.href 等其他重定向方法之前阻止掉连接的默认事件就可以哈

比如

$(’#changesite-panel a.city’).click(function(ev){
ev.preventDefault();
changeSite($(this).attr(’rel’));
});
function changeSite(site){
window.location.href = ‘/event/index.php?from_city=’ + site;
}
})();

  相关解决方案