资讯专栏INFORMATION COLUMN

JavaScript常用脚本集锦6

Acceml / 1327人阅读

摘要:它会指出一个类是继承自另一个类的。测试测试代码来源页面倒计时的一段运用倒计时的一段脚本。截止日期符合日期格式,比如等有效日期。截止的天数小时分钟秒数组成的对象。

清楚节点内的空格

</>复制代码

  1. function cleanWhitespace(element) {
  2. //如果不提供参数,则处理整个HTML文档
  3. element = element || document;
  4. //使用第一个节点作为开始指针
  5. var cur = element.firstChild;
  6. //一直循环,直到没有子节点为止。
  7. while (cur != null) {
  8. //如果节点是文本节点,并且只包含空格
  9. if ((cur.nodeType == 3) && !/S/.test(cur.nodeValue)) {
  10. element.removeChild(cur);
  11. }
  12. //一个节点元素
  13. else if (cur.nodeType == 1) {
  14. //递归整个文档
  15. cleanWhitespace(cur);
  16. }
  17. cur = cur.nextSibling; //遍历子节点
  18. }
  19. }

代码来源:https://gist.github.com/hehongwei44/9105deee7b9bde88463b

JavaScript中的类继承实现方式

</>复制代码

  1. /**
  2. * 把一个实例方法添加到一个类中
  3. * 这个将会添加一个公共方法到 Function.prototype中,
  4. * 这样通过类扩展所有的函数都可以用它了。它要一个名称和一个函数作为参数。
  5. * 它返回 this。当我写一个没有返回值的方法时,我通常都会让它返回this
  6. * 这样可以形成链式语句。
  7. *
  8. * */
  9. Function.prototype.method = function (name, func) {
  10. this.prototype[name] = func;
  11. return this;
  12. };
  13. /**
  14. * 它会指出一个类是继承自另一个类的。
  15. * 它必须在两个类都定义完了之后才能定义,但要在方法继承之前调用。
  16. *
  17. * */
  18. Function.method("inherits", function (parent) {
  19. var d = 0, p = (this.prototype = new parent());
  20. this.method("uber", function uber(name) {
  21. var f, r, t = d, v = parent.prototype;
  22. if (t) {
  23. while (t) {
  24. v = v.constructor.prototype;
  25. t -= 1;
  26. }
  27. f = v[name];
  28. } else {
  29. f = p[name];
  30. if (f == this[name]) {
  31. f = v[name];
  32. }
  33. }
  34. d += 1;
  35. r = f.apply(this, Array.prototype.slice.apply(arguments, [1]));
  36. d -= 1;
  37. return r;
  38. });
  39. return this;
  40. });
  41. /**
  42. *
  43. * The swiss方法对每个参数进行循环。每个名称,
  44. * 它都将parent的原型中的成员复制下来到新的类的prototype
  45. *
  46. * */
  47. Function.method("swiss", function (parent) {
  48. for (var i = 1; i < arguments.length; i += 1) {
  49. var name = arguments[i];
  50. this.prototype[name] = parent.prototype[name];
  51. }
  52. return this;
  53. });

代码来源:https://gist.github.com/hehongwei44/2f89e61a0e6d4fd722c4

将单个字符串的首字母大写

</>复制代码

  1. /**
  2. *
  3. * 将单个字符串的首字母大写
  4. *
  5. */
  6. var fistLetterUpper = function(str) {
  7. return str.charAt(0).toUpperCase()+str.slice(1);
  8. };
  9. console.log(fistLetterUpper("hello")); //Hello
  10. console.log(fistLetterUpper("good")); //Good

代码来源:https://gist.github.com/hehongwei44/7e879f795226316c260d

变量的类型检查方式

</>复制代码

  1. /**
  2. *
  3. * js的类型检测方式->typeof、constuctor。
  4. * 推荐通过构造函数来检测变量的类型。
  5. */
  6. var obj = {key:"value"},
  7. arr = ["hello","javascript"],
  8. fn = function(){},
  9. str = "hello js",
  10. num = 55,
  11. bool = true,
  12. User = function(){},
  13. user = new User();
  14. /*typeof测试*/
  15. console.log(typeof obj); //obj
  16. console.log(typeof arr); //obj
  17. console.log(typeof fn); //function
  18. console.log(typeof str); //string
  19. console.log(typeof num); //number
  20. console.log(typeof bool); //boolean
  21. console.log(typeof user); //object
  22. /*constructor测试*/
  23. console.log(obj.constructor == Object); //true
  24. console.log(arr.constructor == Array); //true
  25. console.log(str.constructor == String); //true
  26. console.log(num.constructor == Number); //true
  27. console.log(bool.constructor == Boolean);//true
  28. console.log(user.constructor == User); //true

代码来源:https://gist.github.com/hehongwei44/1d808ca9b7c67745f689

页面倒计时的一段运用

</>复制代码

  1. /**
  2. *
  3. * @descition: 倒计时的一段脚本。
  4. * @param:deadline ->截止日期 符合日期格式,比如2012-2-1 2012/2/1等有效日期。
  5. * @return -> 截止的天数、小时、分钟、秒数组成的object对象。
  6. */
  7. function getCountDown(deadline) {
  8. var activeDateObj = {},
  9. currentDate = new Date().getTime(), //获取当前的时间
  10. finalDate = new Date(deadline).getTime(), //获取截止日期
  11. intervaltime = finalDate - currentDate; //有效期时间戳
  12. /*截止日期到期的话,则不执行下面的逻辑*/
  13. if(intervaltime < 0) {
  14. return;
  15. }
  16. var totalSecond = ~~(intervaltime / 1000), //得到秒数
  17. toDay = ~~(totalSecond / 86400 ), //得到天数
  18. toHour = ~~((totalSecond - toDay * 86400) / 3600), //得到小时
  19. tominute = ~~((totalSecond - toDay * 86400 - toHour * 3600) / 60), //得到分数
  20. toSeconde = ~~(totalSecond - toDay * 86400 - toHour * 3600 -tominute * 60);
  21. /*装配obj*/
  22. activeDateObj.day = toDay;
  23. activeDateObj.hour = toHour;
  24. activeDateObj.minute = tominute;
  25. activeDateObj.second = toSeconde;
  26. return activeDateObj;
  27. }

代码来源:https://gist.github.com/hehongwei44/a1205e9ff17cfc2359ca

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/87691.html

相关文章

  • JavaScript常用脚本集锦2

    摘要:把中的伪数组转换为真数组在中,函数中的隐藏变量和用获得的元素集合都不是真正的数组,不能使用等方法,在有这种需要的时候只能先转换为真正的数组。检测元素是否支持某个属性代码用法创建和使用命名空间使用方式 把JavaScript中的伪数组转换为真数组 在 JavaScript 中, 函数中的隐藏变量 arguments 和用 getElementsByTagName 获得的元素集合(Nod...

    xialong 评论0 收藏0
  • JavaScript常用脚本集锦5

    摘要:代码来源一些常用的操作方法介绍查找相关元素的前一个兄弟元素的方法。查找元素指定层级的父元素。 DOM操作的增强版功能函数 /** * 将一个DOM节点、HTML字符串混合型参数 * 转化为原生的DOM节点数组 * * */ function checkElem(a) { var r = []; if (a.constructor != Array) { ...

    joywek 评论0 收藏0
  • JavaScript常用脚本集锦7

    摘要:将加法和加上校验位能被整除。下面分别分析出生日期和校验位检查生日日期是否正确输入的身份证号里出生日期不对将位身份证转成位校验位按照的规定生成,可以认为是数字。校验位按照的规定生成,可以认为是数字。表示全部为中文为不全是中文,或没有中文。 判断是否是合理的银行卡卡号 //Description: 银行卡号Luhm校验 //Luhm校验规则:16位银行卡号(19位通用): // 1.将...

    lindroid 评论0 收藏0
  • JavaScript常用脚本集锦1

    摘要:初始化参数可选参数,必填参数可选,只有在请求时需要参数可选回调函数可选参数可选,默认为参数可选,默认为创建引擎对象打开发送普通文本接收文档将字符串转换为对象最后,说明一下此函数的用法。即等待与成功回调,后标志位置为。 jquery限制文本框只能输入数字 jquery限制文本框只能输入数字,兼容IE、chrome、FF(表现效果不一样),示例代码如下: $(input).keyup(...

    ygyooo 评论0 收藏0
  • JavaScript常用脚本集锦3

    通过数组,拓展字符串拼接容易导致性能的问题 function StringBuffer() { this.__strings__ = new Array(); } StringBuffer.prototype.append = function (str) { this.__strings__.push(str); return this; } StringBuffer....

    dack 评论0 收藏0

发表评论

0条评论

最新活动
阅读需要支付1元查看
<