首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > JAVA > Eclipse开发 >

高人指点myeclipse编辑jsp有关问题

2012-10-18 
高人指点myeclipse编辑jsp问题为什么myeclipse会报错,但运行功能正常,去掉return就不报错了,也运行正常。报

高人指点myeclipse编辑jsp问题
为什么myeclipse会报错,但运行功能正常,去掉return就不报错了,也运行正常。
 报错行U:<input type="text" onkeypress="return text(event)"/> 
-------错误信息
Multiple annotations found at this line:
- U:<input type="text" onkeypress="return 
test(event)" />
- Cannot return from outside a function or method.

js代码:
<script type="text/javascript"> 
function text(e){
if(e.keyCode<48||e.keyCode>57){
alert("你输入w的不是数");
return window.event.returnValue=false; 
}
  return true;

}
</script>


[解决办法]
是不是return test(event); 这边少了一个分号
[解决办法]
clean下工程试试

热点排行