当前位置: 代码迷 >> Eclipse >> 高人指点myeclipse编辑jsp有关问题
  详细解决方案

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

热度:52   发布时间:2016-04-23 11:29:59.0
高人指点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下工程试试
  相关解决方案