我不明白我是如何继续使用" null"在为变量分配一个数字之后。
function evalKayScript(syn){
coms = extract(syn,"{...}");
document.write(JSON.stringify(coms));//debug
for(x in coms){
ops = extract(coms[x],"(...)");
com = null; //<-- ***com preset null***
for(y in funNames){
if(ops[1] == funNames[y]){
com = y; //<-- ***com changed to "y"***
}
}
alert(com); <-- alerts given below (first two alerts)
if(com == null){
alert("Command ((("+ops[1]+"))) Not Registered!");
return null;
}
exe = funValues[y];
inputs = execVars(ops[2]);
inputs = extract(inputs,"[...]");
for(y in inputs){
exe.replace(new RegExp("/\(\%"+y+"\%\)/gim"),inputs[y]);
}
exe.replace(new RegExp("/\(\%name\%\)/gim"),ops[0]).replace(new RegExp("/\(\%function\%\)/gim"),ops[1]);
exea = exe;
if(exe.replace(new RegExp("/\:\:\:javascript/gim"),"")! = exes){ //<-- new invalid ":" error
eval(exe);
}else{
evalKayScript(exe);
}
}
}
我不明白为什么,变量&#34; com&#34;转到一个数字,然后回到null ... 我已经设置了一些以我自己的形式捕获的错误,我最终得到了这些警报:
0 //<-- var com
null //<-- ***var com? this makes no sense, how does it go back to null?***
Command ((("(%name%) already exists!"))) Not Registered! //<--caused by if(com == null) This is normal.
http://jstone88.bugs3.com/kayscript/file1.html的实时脚本和http://jstone88.bugs3.com/kayscript/kayscript.js
的JS文件答案 0 :(得分:1)
您没有使用RegExp
构造函数,因为它应该被使用。
就像这样:
new RegExp("pattern without / at the beginning an end","flags");
/pattern/flags
是在js中编写正则表达式的字面形式,但它在RegExp构造函数中有所不同。