锁定老帖子 主题:jseclipse1.5发布
精华帖 (0) :: 良好帖 (0) :: 新手帖 (1) :: 隐藏帖 (0)
|
|
---|---|
作者 | 正文 |
发表时间:2007-02-01
编写javascript还是IDEA最强大,只可惜eclipse里面没有类似的强大的功能.然而遗憾的是IDEA的插件也太少了
|
|
返回顶楼 | |
发表时间:2007-03-18
我也用了一下jseclipse,我写的一个类我认为很正常的写法啊,它就是帮我报错,请问是怎么回事啊?指点,谢谢!
错误信息请参看附件 //JsUtil utility tools function JsUtil() { } /** * Check the if the source string has the char * * @public */ JsUtil.isExistedChar = function (str, char) { if (typeof str == "undefined") { return false; } return str.indexOf(char) != -1; } |
|
返回顶楼 | |
发表时间:2007-03-18
不错,支持下
|
|
返回顶楼 | |
发表时间:2007-03-19
hyysguyang 写道 我也用了一下jseclipse,我写的一个类我认为很正常的写法啊,它就是帮我报错,请问是怎么回事啊?指点,谢谢!
错误信息请参看附件 //JsUtil utility tools function JsUtil() { } /** * Check the if the source string has the char * * @public */ JsUtil.isExistedChar = function (str, char) { if (typeof str == "undefined") { return false; } return str.indexOf(char) != -1; } 看起来,它把“char”当作关键字了 |
|
返回顶楼 | |
发表时间:2007-03-19
netfishx 写道 hyysguyang 写道 我也用了一下jseclipse,我写的一个类我认为很正常的写法啊,它就是帮我报错,请问是怎么回事啊?指点,谢谢!
错误信息请参看附件 //JsUtil utility tools function JsUtil() { } /** * Check the if the source string has the char * * @public */ JsUtil.isExistedChar = function (str, char) { if (typeof str == "undefined") { return false; } return str.indexOf(char) != -1; } 看起来,它把“char”当作关键字了 |
|
返回顶楼 | |
发表时间:2007-03-28
为什么我3.2死活就是装不上?
貌似碰到了那个公开的bug char是js的保留字啦 |
|
返回顶楼 | |
发表时间:2007-03-30
dongzhi 写道 大家好!我是个新手,问个问题!我刚刚下载了JSEclipse1.5.3版,按照ZIP里带的安装说明进行了安装。貌似一切正常。打开Eclipse,选择New-->Ajax-->JS Class,系统报错:Plug-in com.interaktonline.jseclipse was unable to load class com.interaktonline.jseclipse.ui.newwizard.JSClass.
后来建立一个simple project,再建立一个sample1.js的文件,编辑这个文件,系统报错:Unable to create this part due to an internal error. Reason for the failure: The editor class could not be instantiated. This usually indicates that the editor's class name was mistyped in plugin.xml. 再后来打开window-->Preference里的JSEclipse结点,系统仍然报错:Plug-in com.interaktonline.jseclipse was unable to load class com.interaktonline.jseclipse.preference.JSPreferencePage。 请各位指教! 谢谢! 这是一个bug。。。在下一个版本会修正。。。看这里:http://www.adobe.com/cfusion/webforums/forum/messageview.cfm?catid=629&threadid=1224131&STARTPAGE=1&FTVAR_FORUMVIEWTMP=Linear 目前的办法是:在项目上右键->新建->文件->文件名处填后缀名为js的文件就可使用了 |
|
返回顶楼 | |