Uncaught ReferenceError: ActiveXObject is not defined Error in Chrome

前端 未结 3 1119
无人共我
无人共我 2021-01-12 14:03

i have this error in Chrome \"Uncaught ReferenceError: ActiveXObject is not defined \"

my code is

function loadModel() {

            //------------         


        
3条回答
  •  离开以前
    2021-01-12 14:46

    ActiveX is a Microsoft-proprietary framework. It is supported only in MS products (i.e, IE)

    You can use jQuery's parseXML method as a cross-browser alternative.

提交回复
热议问题