能动态加载js的方法
    
- ??
 
- function?_GetJsData(url,?callback)?{??
 
- ????var?scripts?=?document.createElement("script");??
 
- ????document.body.appendChild(scripts);??
 
- ??
 
- ????scripts.onload?=?function()?{??
 
- ????????callback();??
 
- ????????document.body.removeChild(this);??
 
- ????};??