在编写JAVASCRIPT代码过程中,有时候会经常对函数进行自调用,也就是函数递归, JAVASCRIPT允许函数递归,但是有其自己的递归原则, view plaincopy to clipboardprint? mce:script type="text/javascript"!-- var type=6; function current(a) { var i=0;...[ 查看全文 ]
//根据字符串,拆分字符串,相当于vb中的split函数 function SplitString(const Source,ch:string):TStringList; var temp:String; i:Integer; begin Result:=TStringList.Create; //如果是空自符串则返回空列表 if Source='' then exit; temp:=Source; i:=pos(ch,Source); wh...[ 查看全文 ]