1.js的加载是有先后顺序的,并且不能重复引入,重复引入的只有最后一个起作用

2.在使用ligerUI的时候一定要先引用jQuery再引用ligerUI

3.在使用jQuery时遇到变量名未定义的主要原因是没有预加载

//预加载
$(document).ready(function () {
	showRadar();
	getAnnouncements();
	showBar();
	$("#radarTime").bind("change",function(){
		showRadar();
	});
});

  

相关文章:

  • 2022-12-23
  • 2021-05-23
  • 2021-04-03
  • 2022-12-23
  • 2021-12-09
  • 2022-12-23
  • 2021-11-29
  • 2022-12-23
猜你喜欢
  • 2021-08-07
  • 2022-12-23
  • 2021-11-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-07
相关资源
相似解决方案