比较好的网站地址
Posted 鸿兮萄
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了比较好的网站地址相关的知识,希望对你有一定的参考价值。
1.在线查询身份证号地址:
http://www.welefen.com/lab/identify/?province=%E5%B1%B1%E8%A5%BF&city=%E9%98%B3%E6%B3%89%E5%B8%82&area=%E7%9F%BF%E5%8C%BA&year=1999&month=1&day=1&sex=%E7%94%B7
2.JS判断手机操作系统(ios或android)并跳转到不同下载页面
$(function () {
var u = navigator.userAgent, app = navigator.appVersion;
var isAndroid = u.indexOf(‘Android‘) > -1 || u.indexOf(‘Linux‘) > -1; //g
var isIOS = !!u.match(/\(i[^;]+;( U;)? CPU.+Mac OS X/); //ios终端
if (isAndroid) {
window.location.href = ‘appDownload.html‘;
}
if (isIOS) {
window.location.href = ‘iosDownload.html‘;
}
});
3互联网上的自适应方案
http://caibaojian.com/mobile-responsive-example.html
-webkit-filter: grayscale(100%)--------------图片成灰色
以上是关于比较好的网站地址的主要内容,如果未能解决你的问题,请参考以下文章