我必須調用表單提交兩個函數,但我想確保第二個函數只在第一個函數執行後才執行。 我無法控制第一個功能,所以我根本無法編輯它。表單提交多個函數jQuery
function a(et){
//function a script
}
function b(evt){
//function b script
}
from function b is there a way that i can check if function a was completed or executed fully.
那麼函數a是異步的? – Musa
你可以有一個全局變量,並將其值設置爲函數a中的某個常量值。然後在調用函數b –
之前檢查該值,看看這個,這可能對你有幫助。 http://stackoverflow.com/questions/1370766/how-to-detect-when-one-function-is-complete-from-another-function – jycr753