Test if jquery is loaded not using the document ready event

后端 未结 6 1110
北海茫月
北海茫月 2020-12-19 05:28

On my site I have a jquery function which retrieves data from another (secured) server as soon as the page is loaded. Using a jsonp call I currently load this data after doc

6条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-19 05:58

    hi I think You should first check that is jquery and the method you are going to use is defined or not

    if(typeof(jQuery)!='undefined' && typeof($.ajax)!='undefined' ){
    // your code will come here
    }

提交回复
热议问题