<!--end: blogStats --> <!--end: navigator 博客导航栏 --> <!--end: header 头部 --> <!--done--> scrapy框架简介和基础应用 今日概要 scrapy框架介绍 环境安装 基础使用 今日详情 一.什么是Scrapy? Scr ...
分类:
其他好文 时间:
2019-10-26 10:50:10
阅读次数:
109
bom:browser object model **navigator:获取浏览器的信息 **screen:获取屏幕的相关信息 **location:请求的url地址 **获取请求的url地址:location.href **设置请求的url地址:location.href=..... **his ...
分类:
Web程序 时间:
2019-10-26 01:11:07
阅读次数:
93
iOS/input输入框调用软键盘底部留白 只需input输入框失去焦点时,让页面自动下移即可恢复 在该代码基础上增加了一些简单逻辑,判断是否为ios系统和是否为微信6.7.4版本。 代码: 原文链接:https://blog.csdn.net/weixin_42992083/article/det ...
分类:
移动开发 时间:
2019-10-25 13:27:28
阅读次数:
111
目前主流的操作系统有三个: Windows / MacOS / Linux. 想要用JavaScript判断其所在的操作系统可以通过: navigator.platform 实现; 返回值一般有下面三种: 1. Windows: "Win32" 2. MacOS: "MacIntel" 3. Lin ...
分类:
其他好文 时间:
2019-10-22 14:43:45
阅读次数:
111
前端BOM BOM:浏览器对象模型 window alert:弹出信息框 confirm:弹出确认框,确定或取消;返回结果赋值给一个变量 prompt:弹出输入框,用一个变量接受输入信息 定时器:setTimeout或setInterval location navigator 用于检测浏览器上的插 ...
分类:
其他好文 时间:
2019-10-19 12:58:45
阅读次数:
88
console.log(navigator.userAgent); var os = function() { var ua = navigator.userAgent, isWindowsPhone = /(?:Windows Phone)/.test(ua), isSymbian = /(?:S... ...
分类:
移动开发 时间:
2019-10-19 11:15:33
阅读次数:
531
if(navigator.userAgent.match(/(iPhone|iPod|Android|ios)/i)){ } ...
分类:
移动开发 时间:
2019-10-17 13:58:39
阅读次数:
100
BOM: browser object model 浏览器对象模型 window 对象的子对象,也是属性 window document:浏览器是代表html的文档对象. history location: url对象 screen navigator window对象的常见属性和方法: 三个弹出框 ...
分类:
编程语言 时间:
2019-10-16 11:13:33
阅读次数:
84
Basic navigation by using 'Navigator.push' & 'Navigator.pop()', for example, we have two screen, screen1 and screen2, we want to navigate between two ...
分类:
其他好文 时间:
2019-10-13 21:05:55
阅读次数:
142
开启全屏 plus.navigator.setFullscreen(true); 关闭全屏 plus.navigator.setFullscreen(false); 没有找到可以单页面开启全屏的方法 这个开启全屏后整个项目都是全屏的了,有的时候只需要几个页面是全屏 我的想法是在需要开启全屏显示的页面 ...
分类:
移动开发 时间:
2019-10-08 19:15:29
阅读次数:
172