js
高山上的人
前端开发者
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
js常用知识点
打开新窗口,替换当前页:window.open()或window.location='' '';const object={'time':'2021.5.20','people':'小陈'}window.location.hash.replace('#', ''):去除#号。上一层页面跳转:parent.location.href='' '';最外层的页面跳转:top.location.href='' '';本页跳转:window.location.href='' '';原创 2024-01-19 18:42:10 · 830 阅读 · 0 评论 -
js立即函数与闭包
var config = (function () { var LsJsConfig = function () { this.hostAddress = 'http://172.31.100.100'; this.timeout = 20000; this.isDebug = true; this.isOffical = false; this.H5verCode = '1-20'; th...原创 2021-11-10 11:01:45 · 540 阅读 · 0 评论 -
js判断运行环境是手机还是 PC
function IsPC() { var userAgentInfo = navigator.userAgent; // 包含有关浏览器的信息 // 非手机端 var Agents = ["Android", "iPhone","SymbianOS", "Windows Phone","iPad", "iPod"]; var flag = true; for (var v = 0; v < Agents...原创 2021-11-24 15:08:47 · 1922 阅读 · 0 评论 -
jquery实现二维码
jquery实现二维码原创 2022-10-28 15:51:07 · 385 阅读 · 0 评论
分享