<td align='center'>
      <a onmouseover='gogame(2)' onfocus='this.blur()' href='#'><img height='25' width='129' border='0' id='Image8' name='Image8' src='images/index/sifu_icon_qb1.gif'></a>
</td>
<td align='center'>
          <a onmouseover='gogame(1)' onfocus='this.blur()' href='#'><img height='25' width='129' border='0' id='Image9' name='Image9' src='images/index/sifu_icon_xkf1.gif'></a>
</td>
/*js方法*/
function gogame(obj){
$.get("fuwuqi.php",{serviceId:obj},function(data){
str2=data;
removeBox("msgReplayDlg");
var strdlg = '<div id=\"msgReplayDlg\" style=\"z-index:3001;display:block;position: absolute;top: 30%;left: 50%;margin-left: -350px;width: 700px;\;text-align:center;color:#317895;" >'+GetTableMsgStrBegin()+str2+GetTableMsgStrEnd()+'</div>';
$("body").append(strdlg);
$('#msgReplayDlg').jqm({modal: true, overlay: 60, trigger: false});
$('#msgReplayDlg').jqmShow();
})
}现在的问题是:
   鼠标放上去的时候只要不离开图片的范围,就会一直执行$.get方法去读数据库,很耗资源
求帮助