主頁 > 知識庫 > 在VBScript中實現(xiàn)-函數(shù)/方法名作為參數(shù)傳入另一個函數(shù)

在VBScript中實現(xiàn)-函數(shù)/方法名作為參數(shù)傳入另一個函數(shù)

熱門標簽:河北智能外呼系統(tǒng)軟件 宜賓語音外呼系統(tǒng)軟件 電銷機器人教育 調度系統(tǒng)外呼 福建外呼增值業(yè)務線路 伊春外呼業(yè)務系統(tǒng) 綿陽防封電銷卡價格 電銷機器人源碼網盤下載 中國辦理電信400電話
在JS中有這種用法,某個函數(shù)名可以當成參數(shù)的形式,傳入到另外一個函數(shù)內部去,例如:
script type="text/javascript">
!--
function myFuncA(str,myFuncB){
 str = str + " 您好!";
 str = myFuncB(str);
 return str;
}
function myFuncB(str){
 str = str + "歡迎來到IECN.NET";
 return str;
}
alert(myFuncA("張三",myFuncB));
//-->
/script>

在VBScript有兩種方式可以來實現(xiàn),即用execute或GetRef 函數(shù)。
一、利用execute:
script language=vbscript>
Function myFuncA(str,myFuncName)
 str = str  " 您好!"
 execute("str = "  myFuncName  "(str)")
 myFuncA = str
End Function

Function myFuncB(str)
 str = str + "歡迎來到IECN.NET"
 myFuncB = str
End Function

msgbox myFuncA("張三","myFuncB")
/script>
二、利用GetRef:
script type="text/vbscript">
Function myFuncA(str,myB)
 str = str  " 您好!"
 str = myB(str)
 myFuncA = str
End Function

Function myFuncB(str)
 str = str + "歡迎來到IECN.NET"
 myFuncB = str
End Function

document.write(myFuncA("張三",GetRef("myFuncB")))
/script>

標簽:那曲 延邊 電商邀評 蘇州 銅川 河池 優(yōu)質小號 新鄉(xiāng)

巨人網絡通訊聲明:本文標題《在VBScript中實現(xiàn)-函數(shù)/方法名作為參數(shù)傳入另一個函數(shù)》,本文關鍵詞  在,VBScript,中,實現(xiàn),函數(shù),;如發(fā)現(xiàn)本文內容存在版權問題,煩請?zhí)峁┫嚓P信息告之我們,我們將及時溝通與處理。本站內容系統(tǒng)采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《在VBScript中實現(xiàn)-函數(shù)/方法名作為參數(shù)傳入另一個函數(shù)》相關的同類信息!
  • 本頁收集關于在VBScript中實現(xiàn)-函數(shù)/方法名作為參數(shù)傳入另一個函數(shù)的相關信息資訊供網民參考!
  • 推薦文章