一、firefox不支持innerText
二、firefox下的window.location.reload(true)会引起post请求,ie不会。
    用window.location.replace(window.location.href),强制加载页面两者都不会引起post请求。
三、firefox不支持通过修改script标签的src属性刷新js脚本(即使url请求带随机的get参数也不行),
  所以最好用creatElement并appendChild的方式动态加载js。
四、firefox下如果文档有文档类型定义时的严格限制,则不允许出现script标签里的src属性为空的情况。

相关文章:

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