function isWeiXin() { var ua = window.navigator.userAgent.toLowerCase(); if (ua.match(/MicroMessenger/i) == 'micromessenger') { return true; } else { ... ...
分类:
微信 时间:
2018-06-15 16:16:50
阅读次数:
619
最近在调试一个jquery插件Manifest 测试过程中发现IE一直不能完全展示这个插件,只显示了一个textbox文本框 IE下的bug的效果图 其他浏览器正常的效果图 跟踪原因,IE下jquery版本不兼容,有报错 什么鬼,找不到跟我有什么关系,MD 找不到,你还不赶紧去找,SB IE,莫非是 ...
分类:
Web程序 时间:
2018-06-14 18:40:35
阅读次数:
195
特别需要注意的是UA在Request中传值会出现错误,这时需要耐心来把问题解决 ...
分类:
Web程序 时间:
2018-06-13 20:53:43
阅读次数:
182
//另一种: //实现函数如下所示 function getBrowser(n) { var ua = navigator.userAgent.toLowerCase(), s, name = '', ver = 0; //探测浏览器 (s = ua.match(/msie ([\d.]+)/)) ... ...
分类:
Web程序 时间:
2018-06-11 14:01:40
阅读次数:
212
<script> function calculatescale() { var phoneWidth = parseInt(window.screen.width); var phoneScale = phoneWidth / 1280;//除以的值按手机的物理分辨率 var ua = navig ...
分类:
Web程序 时间:
2018-06-07 17:52:23
阅读次数:
203
一:样式操作 示例:开关灯和模态框 CSS 示例: 位置: 返回顶部示例 <!DOCTYPE html> <html lang="zh-CN"> <head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="IE= ...
分类:
Web程序 时间:
2018-06-05 15:28:15
阅读次数:
224
1、打开数据库。 2、点开 数据库-UFSystem。 3、找到dbo.UA_user表,鼠标右键,点打开表。 4、打开后,找到admin,cPassword列即可找到系统管理员密码。 1、打开数据库。 2、点开 数据库-UFSystem。 3、找到dbo.UA_user表,鼠标右键,点打开表。 4 ...
分类:
其他好文 时间:
2018-06-04 14:04:49
阅读次数:
1292
form组件的功能 form组件的用法 form组件登陆 <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="x-ua-compatible" content="IE=edge"> <meta name="viewport ...
分类:
其他好文 时间:
2018-06-02 11:27:08
阅读次数:
184
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