<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
<html xmlns="http://www.w3.org/1999/xhtml"> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 
<title>无标题文档 </title> 
<style type="text/css"> 
</style> 
<script type="text/javascript"> function p_move_(evt) 
{ var e=window.event?window.event:evt; 
  var start_=e.screenX; 
  var set_=200; 
  var opp=document.getElementById("test"); 
  var mid=parseInt(opp.style.left); 
  var end_=mid - start_ + set_;
  opp.style.left=end_+'px'; 
  

</script> 
</head> <body> 
<div id="test" style="position:absolute;left:10px;top:2px;"> 
<table width="10000" border="1"> 
  <tr> 
    <td>&nbsp; </td> 
  </tr> 
</table> 
<img  id="ac" style=" position:absolute;filter:alpha(opacity=100);opacity:1; left:2000px; top:200px;"  onclick="p_move_();" src="pupil.gif"  /> </div>
</body> 
</html>这代码在FF运行时没有效果,在FF上报left参数错误,怎么样改才能让它在FF和IE上都可以运行