用try cath 方法比较好点,如果出现问题它会跳到异常执行,不会出现一些什么undefine ...
function CreateXmlHttpRequest() { try { // Firefox, Opera 8.0+, Safari xmlHttp = new XMLHttpRequest(); } catch (e) { // Internet Explorer try { xmlHttp = new ActiveXObject("Msxml2.XMLHTTP"); } catch (e) { try { xmlHttp = new ActiveXObject("Microsoft.XMLHTTP"); } catch (e) { alert("您的浏览器不支持AJAX!"); } } } }

  

相关文章:

  • 2021-10-05
  • 2021-08-27
  • 2021-09-16
  • 2021-10-28
  • 2021-12-12
  • 2021-12-12
猜你喜欢
  • 2022-12-23
  • 2021-11-18
  • 2021-10-23
  • 2022-01-05
  • 2021-10-16
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案