varSys={};varua=navigator.userAgent.toLowerCase();vars;(s=ua.match(/chrome\/([\d.]+)/))?Sys.chrome=s[1]:0;//chrome浏览器if(Sys.chrome){$(".yzeditortabletrtd").each(function(){varyzBroder=parseInt($(this).css(‘border-width‘))||0;if(yzBroder<=0){$(this).cs..
分类:
其他好文 时间:
2015-04-21 18:35:01
阅读次数:
99
var browser = {versions: function () {var u = navigator.userAgent, app = navigator.appVersion;return { //移动终端浏览器版本信息ios: !!u.match(/\(i[^;]+;( U;)? CP...
分类:
移动开发 时间:
2015-04-20 09:21:55
阅读次数:
168
一个手机端网站的项目,考虑到用户可能用微信扫码打开网站,而微信内置浏览器并不允许用户进行下载。查阅资料后,我做了如下的兼容。了解到可以用如下方法判断微信浏览器function is_weixin(){ var ua = navigator.userAgent.toLowerCase(); ...
分类:
微信 时间:
2015-04-17 13:18:30
阅读次数:
260
var IeAuto = navigator.userAgent.indexOf('MSIE') > -1; //判断是不是Ie浏览器 并赋值给变量 window.onload=function(){ function show(obj,id,html,width,height){ ...
分类:
其他好文 时间:
2015-04-16 14:00:14
阅读次数:
139
/** 智能机浏览器版本信息:**/var browser = { versions: function() { var u = navigator.userAgent, app = navigator.appVersion; return { //移动终端浏览器版...
分类:
编程语言 时间:
2015-04-15 16:54:36
阅读次数:
148
window.deviceId = '{{$deviceId}}'; window.iOS = navigator.userAgent.match(/(iPad|iPhone|iPod)/g) ? true : false; if( iOS ){ iOSversion ...
分类:
移动开发 时间:
2015-04-14 23:17:45
阅读次数:
208
WebView下载
有时候你所加载的页面有下载链接,如果你需要响应点击后下载的功能则需要进行如下处理:
webView.setDownloadListener(new DownloadListener() {
@Override
public void onDownloadStart(String url, String userAgent,
String conte...
分类:
移动开发 时间:
2015-04-14 13:01:13
阅读次数:
172
(function($, window, document,undefined){ if(!window.browser){ var userAgent = navigator.userAgent.toLowerCase(),uaMatch; ...
分类:
Web程序 时间:
2015-04-13 10:50:44
阅读次数:
120
mobile = /ipad|iphone|ipod|android|blackberry|windows phone|opera mini|silk/i.test(navigator.userAgent);// 第一部分:一个正则表达式,移动端包含的userAgent /ipad|iphone|....
分类:
移动开发 时间:
2015-04-10 19:55:56
阅读次数:
162
如题,废话不说,直接上代码。首先是登录QQ的小脚本#!/usr/bin/perl
useWebqq::Client;
useData::Dumper;
useDigest::MD5qw(md5_hex);
useLWP::UserAgent;
useJSON;
my$qq=QQ号;
my$pwd=md5_hex(‘QQ密码‘);
my$client=Webqq::Client->new(debug=>0);#等于1开启debug
##..
分类:
其他好文 时间:
2015-04-08 19:59:27
阅读次数:
147