首页
富录
累计撰写
225
篇文章
累计创建
275
个标签
累计收到
0
条评论
栏目
目 录
CONTENT
以下是
JavaScript
相关的文章
2017-07-13
JavaScript刷新页面的方法
history.go(0) location.reload() location=location location.assign(location) location.replace(location)
2017-07-13
24
0
0
JavaScript
2017-07-10
JavaScript获取IP地址
JavaScript不能直接获取用户的IP地址,只能通过调用API的方法来获得。 可以通过以下几个地址获得: 1616.net http://chaxun.1616.net/s.php?type=ip&output=json function getadress() { $
2017-07-10
20
0
0
JavaScript
2017-06-11
HTML5 Geolocation(地理定位)
使用 getCurrentPosition() 方法来获取用户的位置。 HTML 代码 <div class="geolocation"></div> JavaScript 代码 var geolocation = { getSite: function() { if (w
2017-06-11
27
0
0
JavaScript
2017-06-02
JavaScript中的匿名函数
1. 什么是匿名函数 匿名函数,顾名思义就是没有函数名称的函数。其作用是避免全局变量的污染以及函数名的冲突。 2. 匿名函数的几种写法 常用写法 (function() {})() 其他写法 !function() {}() +function() {}() -function() {}() ~f
2017-06-02
25
0
0
JavaScript
2017-05-22
JavaScript中this的指向
this 的指向规则 this 的指向取决于函数的调用方式,总结如下: 有所属对象时:指向所属对象 无所属对象时:严格模式下指向 undefined,非严格模式下指向全局对象(浏览器中是 window,Node.js 中是 global) new 实例化后:指向新对象 通过 apply、call 或
2017-05-22
16
0
0
this
JavaScript
2017-05-21
JQ与JS等价代码
选择器 jQuery var els = $(".el"); 原生方法 var els = document.querySelectorAll(".el"); 函数法 var $ = function (el) { return document.querySelectorAll(el)
2017-05-21
15
0
0
JavaScript
2017-05-16
Jqprint实现页面打印
在后台管理类系统开发中,经常需要实现页面打印功能。以下是一款轻量级打印插件 Jqprint 的使用方法。 1. 引入插件 需要引入 jQuery 和 Jqprint 插件: <script src="jquery-1.4.4.min.js"></script> <script src="jquery
2017-05-16
18
0
0
JavaScript
2017-05-15
概率计算
有goldtree和greentree,获得它们的概率分别为5%和95%,实现代码如下: class Percent { constructor(oArr) { this.oArr = oArr; this.result = this.calculateRes
2017-05-15
27
0
0
JavaScript
2017-05-09
JavaScript字符串(string)对象
一、string的属性 1、length获取字符串长度 var str = "dgf"; console.log(str.length) // 输出3 2、prototype向对象添加属性和方法 // 去掉字符左端的的空白字符 String.prototype.LeftTrim = funct
2017-05-09
21
0
0
JavaScript
1
2
3
4
5