var u = navigator.userAgent; if (u.indexOf('Android') > -1 || u.indexOf('Linux') > -1) {//安卓手机 alert("安卓手机"); } else if (u.indexOf('iPhone') > -1) {// ...
分类:
移动开发 时间:
2020-05-07 19:40:46
阅读次数:
111
html中的head的meta元素中的keywords与description标签如下: <meta name="keywords" content="xxxx" > <meta name="description" content="xxxx"> xpath获取属性使用@属性名就行了,如 //me ...
分类:
Web程序 时间:
2020-05-07 01:07:58
阅读次数:
115
枚举一些随机图片的接口 http://lorempixel.com/1600/900 https://unsplash.it/1600/900?random 环境背景: https://img.xjh.me/random_img.php?type=bg&ctype=nature&return=302 ...
分类:
其他好文 时间:
2020-05-06 21:44:37
阅读次数:
85
点击事件,点击div时触发一个弹窗 <div id="a1">点击</div> js document.getElementById('a1').onclick=function(){ alert('点击') } 如果写在head里面需要加window.onload,会最后执行js window.o ...
分类:
其他好文 时间:
2020-05-06 21:21:49
阅读次数:
72
来源https://blog.csdn.net/qq_24147051/article/details/89879282 首先我们定义一个 child 组件,什么事件都不绑定,代码如下: Vue.component('child', { template: '<button>click me</bu ...
分类:
其他好文 时间:
2020-05-06 19:49:55
阅读次数:
71
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>获取浏览器城市 ...
分类:
其他好文 时间:
2020-05-06 11:50:34
阅读次数:
124
<!DOCTYPE html><html><head> <meta charset="UTF-8"> <title></title> <script src="../js/jquery-3.3.1.min.js" type="text/javascript" charset="utf-8"></sc ...
分类:
Web程序 时间:
2020-05-05 23:50:52
阅读次数:
109
[TOC] 前端加解密 参考文档: SubtleCrypto: "https://developer.mozilla.org/zh CN/docs/Web/API/SubtleCrypto" RSA算法原理: "https://cjting.me/2020/03/13/rsa/" DH算法原理:ht ...
分类:
其他好文 时间:
2020-05-05 20:31:05
阅读次数:
69
BOM:Browser Object Model 4.1.系统对话框方法 alert() #警告框 window.alert('mjj'); confirm() #确认框 var a = window.confirm('你确定要离开网站?'); console.log(a); 如果点击确定,a的值返 ...
分类:
其他好文 时间:
2020-05-05 18:30:11
阅读次数:
62
声明变量 var 变量名; 3.1 基本数据类型 整型 number 字符串 str boolean undefined 未定义的 null var a = 2; var b = '2' + a;--变成22,转换成字符串拼接 var c = true; console.log(typeof c) ...
分类:
其他好文 时间:
2020-05-05 17:45:35
阅读次数:
59