问候,
我正在尝试运行使用 Oracle DBMS 的基于 Web 的界面 Application Express (APEX) 上传的 SQL 脚本。
但是,单击“运行”按钮后,它什么也没做,怀疑有任何 javascript 错误,我拔出了 firebug,js 上似乎有错误。
this.endLine.isPreceding is not a function
http://localhost:8080/i/editor/codearea.xbl.xml
Line 2864
萤火虫报告了什么。
对此有任何想法吗?
提前致谢。
-aw
编辑:js部分
CodeRange.prototype.setStartBeforeEnd = function()
{
if (this.endLine.isPreceding(this.startLine) ||
(this.endLine == this.startLine && this.endCol < this.startCol))
{
var l = this.endLine;
this.endLine = this.startLine;
this.startLine = l;
var c = this.endCol;
this.endCol = this.startCol;
this.startCol = c;
}
return this;
};