为什么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下工程试试