supplier.html 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <!DOCTYPE html><html><head><meta charset=utf-8><meta http-equiv=X-UA-Compatible content="IE=edge"><meta name=viewport content="width=device-width,initial-scale=1,user-scalable=no"><link rel="shortcut icon" href=/favicon.ico><title>神英优选</title><link href=/view_supplier/css/chunk-vendors.ff17e5a1.css rel=stylesheet><link href=/view_supplier/css/app.5dda1378.css rel=stylesheet></head><body><noscript><strong>请开启 JavaScript 功能来使用 神英优选。</strong></noscript><iframe id=IEIframe style="display: none;" width=100% height=100% src=/static_supplier/ie.html frameborder=0></iframe><div id=app></div><script src=/view_supplier/js/chunk-vendors.2bcb1bb4.js></script><script src=/view_supplier/js/app.bb14bf99.js></script></body><script>function IEVersion() {
  2. var userAgent = navigator.userAgent; //取得浏览器的userAgent字符串
  3. var isIE =
  4. userAgent.indexOf("compatible") > -1 && userAgent.indexOf("MSIE") > -1; //判断是否IE<11浏览器
  5. if (isIE) {
  6. return true;
  7. } else {
  8. return false; //不是ie浏览器
  9. }
  10. }
  11. /* 如果是ie浏览器 */
  12. if (IEVersion()) {
  13. document.querySelector('#IEIframe').style.display = 'block'
  14. document.querySelector('#app').style.display = 'none'
  15. }
  16. // dataset 方法兼容 IE 浏览器。ie10及以下不支持dataset
  17. if (window.HTMLElement) {
  18. if (Object.getOwnPropertyNames(HTMLElement.prototype).indexOf('dataset') === -1) {
  19. Object.defineProperty(HTMLElement.prototype, 'dataset', {
  20. get: function () {
  21. var attributes = this.attributes // 获取节点的所有属性
  22. var name = []
  23. var value = [] // 定义两个数组保存属性名和属性值
  24. var obj = {} // 定义一个空对象
  25. for (var i = 0; i < attributes.length; i++) { // 遍历节点的所有属性
  26. if (attributes[i].nodeName.slice(0, 5) === 'data-') { // 如果属性名的前面5个字符符合"data-"
  27. // 取出属性名的"data-"的后面的字符串放入name数组中
  28. name.push(attributes[i].nodeName.slice(5));
  29. // 取出对应的属性值放入value数组中
  30. value.push(attributes[i].nodeValue);
  31. }
  32. }
  33. for (var j = 0; j < name.length; j++) { // 遍历name和value数组
  34. obj[name[j]] = value[j]; // 将属性名和属性值保存到obj中
  35. }
  36. return obj // 返回对象
  37. }
  38. })
  39. }
  40. }</script></html>