这是 a 标签内的 onclick 监听器
onclick="showMap('change-img-box',event); return false;"
这是jquery
function showMap(id,e){
var hpos = e.pageX, ypos = e.pageY; alert(hpos+'----'+ypos);
if($("#"+id).is(":visible")){
$("#"+id).hide();
}else{
$("#"+id).css({"top": ypos+10, "left": hpos+10}).hide().fadeIn(300);
}
}
不知道为什么,但是 IE 7 说 hpos 和 ypos 都是未定义的。我怎样才能解决这个问题。提前致谢。