博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Javascript基础1
阅读量:5174 次
发布时间:2019-06-13

本文共 989 字,大约阅读时间需要 3 分钟。

1.数据类型:null和undefined区别?

  undefined是指原生类型没有定义,而null是指对象没定义.

2.数组声明:['a',3,'hello',true];

3.控制结构:for(var i=0; i<test.length; i++){//...........}

  如果对象:var obj = {name:'aa',age:23};

  for(var k in obj){console.log(k+obj[k]);}

4.对象操作:

  str.length;  str.substr(2,3);   

  var aa =['a','b','c','d'];

  var bb = 'a,b,c,d,e';

  对象合并为字符串:aa.join(',');

  字符串分解为对象:bb.split(',');

  返回字符串出现的位置:indexOf(string);

  toLowerCase//toUpperCase//replace(str1,str2);

  日期对象:

  getFullYear();//

  getMonth()//

  getDate();

  getHours();

  getMinutes();

  getSeconds();

  getMilliseconds();

  Math数学对象:

  ceil(..);  //    >=此数的最小整数.

  floor(..)//   <=此数的最大整数

  min(d1,d2,d3);返回最小值

  max(d1,d2,d3);

  random();返回随机数

window内置对象

  window.navigator

  window.location 地址栏对象

  window.history  历史记录

    window.history.forward();

    window.history.back();

  window.screen  屏幕对象

  window.screen.width  获取屏幕宽度

  window.document  文档对象

posted on
2017-09-22 16:33 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/bing2017/p/7575587.html

你可能感兴趣的文章
排序算法
查看>>
hdu-------1081To The Max
查看>>
JavaEE 从入门到放弃(三):JSP 让世界更美好?
查看>>
C#读写TxT文件
查看>>
Luogu P2051 [AHOI2009]中国象棋 | dp
查看>>
MySql 中 case when then else end 的用法
查看>>
[转载]01背包问题 (动态规划算法)
查看>>
1059. C语言竞赛
查看>>
MongoDB日志过大怎么办?
查看>>
【转】PHP中获取当前系统时间、时间戳
查看>>
js 的一些操作时间
查看>>
salesforce lightning零基础学习(九) Aura Js 浅谈二: Event篇
查看>>
免费ERP-2BizBox v3.3.1亮点:批量建立应收账款
查看>>
c#死锁示例代码
查看>>
C# picturebox 加载图片后透明显示在另一控件之上
查看>>
c#学习0217
查看>>
.Net获取网页源代码,淘宝宝贝排名
查看>>
Flutter Window环境运行(VSCode + 单独运行Android 虚拟机)
查看>>
【Unity3D】图片纹理压缩方式
查看>>
Building Java Projects with Maven
查看>>