x-ua-compatible 用来指定IE浏览器解析编译页面的model x-ua-compatible 头标签大小写不敏感,必须用在 head 中,必须在除 title 外的其他 meta 之前使用。 1、使用一行代码来指定浏览器使用特定的文档模式。 <meta http-equiv="x-ua ...
分类:
其他好文 时间:
2018-05-29 18:50:28
阅读次数:
172
<script type="text/javascript"> UA = navigator.userAgent.toLowerCase(); url = window.location; url = url.toString(); if ((UA.indexOf('iphone') != -1 | ...
分类:
其他好文 时间:
2018-05-25 14:51:14
阅读次数:
430
1 import urllib.request 2 import random 3 4 url = "http://www.baidu.com/" 5 6 # 可以是User-Agent列表,也可以是代理列表 7 ua_list = [ 8 "Mozilla/5.0 (Macintosh; Inte... ...
分类:
其他好文 时间:
2018-05-24 21:56:03
阅读次数:
844
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"><head id="Head1"><meta http-equiv="X-UA-Compatible" content="IE=edge" /> 、<meta http-equiv= ...
分类:
其他好文 时间:
2018-05-24 15:11:59
阅读次数:
147
/*!* UA检测及跳转*/;(function(){ var whatdevice = {}; var myUA = window.navigator.userAgent.toLowerCase(); //正则得小写 /* * 是否移动设备:返回Boolean。 */ whatdevice.isM ...
分类:
Web程序 时间:
2018-05-22 18:34:27
阅读次数:
673
/*检测是支付宝还是其他*/ var ua = window.navigator.userAgent.toLowerCase(); if(ua.match(/AlipayClient/i) == 'alipayclient') { console.log('支付宝'); } else { // In... ...
分类:
其他好文 时间:
2018-05-21 16:19:57
阅读次数:
164
const ua = navigator.userAgent; this.ua = ua; this.trident = ua.indexOf('Trident') > -1; // ie this.presto = ua.indexOf('Presto') > -1; // opera this. ...
分类:
其他好文 时间:
2018-05-18 18:11:46
阅读次数:
221
使用meta标签来调节浏览器的渲染方式,告诉浏览器用哪种内核渲染,360双核浏览器就是在ie和chrome之间来回切换,现在使用meta标签来强制使用最新的内核渲染页面 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> rg ...
分类:
其他好文 时间:
2018-05-16 16:32:00
阅读次数:
144
一:循环 for for in <!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title>循环</title> <meta n ...
分类:
Web程序 时间:
2018-05-14 11:48:21
阅读次数:
266
1、<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />强制把不标准的转换成 标准的<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE10" />强制兼容ie10 ...
分类:
其他好文 时间:
2018-05-11 00:52:27
阅读次数:
201