欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  科技

去掉Myeclipse对JS等文件的验证(Cannot return from outside a function or method)

程序员文章站 2023-12-09 12:29:51
去掉Myeclipse对JS等文件的验证(Cannot return from outside a function or method)...

在用myeclipse导入新工程或在写代码时,最郁闷的就是它对js,jsp,html的验证太严格了,有时会呈现一个红叉或者一个黄色的感慨号,一运行就报cannot return from outside a function or method的错,为此讲解两个解决办法,本文解决cannot return from outside a function or method的错。

方法/步骤

1、选中当前工程,右键单击properties,弹出properties界面

去掉Myeclipse对JS等文件的验证(Cannot return from outside a function or method)

2、然后选择myeclipse—>validation—>excluded resource下找到不需要验证的文件或者文件夹

去掉Myeclipse对JS等文件的验证(Cannot return from outside a function or method)

3、在不需要验证的文件或者文件夹前打勾,然后点击 "ok"按钮保存。我的js,jsp,html在webroot下,所以我

去掉Myeclipse对JS等文件的验证(Cannot return from outside a function or method)

4、解决cannot return from outside a function or method报的错。法一:在myeclipse菜单栏window --->preferences --->myeclipse --->validation --->javascript validator for js    files 把bulid 复选框的勾去掉 就可以了

去掉Myeclipse对JS等文件的验证(Cannot return from outside a function or method)

5、法二:在所建立的工程项目上右键单击,找到myeclipse-->exclude form validation单击一下,打上√号,js的错误就没了!

去掉Myeclipse对JS等文件的验证(Cannot return from outside a function or method)

注意:上面介绍了如何去掉myeclipse对js等文件的验证,一个从根本上解决问题,一个是解决报错的问题。

相关标签: Myeclipse 验证