0
我想檢查是否handlebar js包含在應用程序的HTML頁面中。但它始終返回即使在條件語句中,「未捕獲參考誤差 - 把手未定義」。指導我達到這一要求。提前致謝。如何檢查應用程序中是否包含handlebar js?
if(Handlebars){
// do something with the templates written
}else{
// ...
}
我想檢查是否handlebar js包含在應用程序的HTML頁面中。但它始終返回即使在條件語句中,「未捕獲參考誤差 - 把手未定義」。指導我達到這一要求。提前致謝。如何檢查應用程序中是否包含handlebar js?
if(Handlebars){
// do something with the templates written
}else{
// ...
}
試圖訪問全球範圍內的未定義的變量總是會拋出一個ReferenceError
,但有一個簡單的解決方案 - 只是if (window.Handlebars)
取代if (Handlebars)
。
非常感謝。現在工作正常。 – KuKa
@KuKa:很高興聽到它! –