当前位置: 首页 > news >正文

东莞人才网官方网站宁波seo公司

东莞人才网官方网站,宁波seo公司,济南网站建设 历山北路,做个中英文网站多少钱文章目录 script 标签srcdefer 延迟加载 基本语法定义变量 与 使用变量基本类型typeof 查看变量类型复合类型数组类型定义对象类型定义 函数定义函数使用函数 script 标签 src 和scc一样可以内嵌也可以外src外引。 一般是推荐外引。 <script src"idx.js">&l…

文章目录

  • script 标签
    • src
    • defer 延迟加载
  • 基本语法
    • 定义变量 与 使用变量
      • 基本类型
      • typeof 查看变量类型
      • 复合类型
        • 数组类型定义
        • 对象类型定义
    • 函数
      • 定义函数
      • 使用函数

script 标签

src

和scc一样可以内嵌也可以外src外引。
一般是推荐外引。

<script src="idx.js"></script>

defer 延迟加载

等html都加载完再执行,就不用把script放到下面了。

<script src="idx.js" defer></script>

基本语法

定义变量 与 使用变量

变量类型分为两大类:基本类型 和 复合类型。

基本类型

基本类型分为五大类:数值类型、字符串类型、布尔类型、undefined类型、null类型。

var a = 10.7
var b = 'ssdfsdfsd'
var c = false
var d // undefined
var e = document.getElementById("xx1") // 找不到id为xx1的元素时  nullconsole.log(a)
console.log(b)
console.log(c)
console.log(d)
console.log(e)

在这里插入图片描述

typeof 查看变量类型

typeof 作为运算符 typeof() 作为方法。
作用是一样的。

console.log(typeof(a))
console.log(typeof(b))
console.log(typeof c)
console.log(typeof d)
console.log(typeof e)

在这里插入图片描述

复合类型

符合类型分为三种:数组类型、对象类型、函数类型。

数组类型定义

与java数组的区别:1、数组长度可变 2、没有越界 3、不用同类型

var arr = [34, 56, 78, 90, "xx", undefined, false, null, [45, 67]]
arr.push(80)
console.log(arr)
console.log(arr.length)
console.log(arr[2])

在这里插入图片描述

对象类型定义

var obj = {name: "xx",age: 31, sex: "男", banks: ["中国银行","建设银行", "工商银行"],wife: {name: "yy",age: 20,sex: "女",banks: ["平安银行", "工行"]},children: [{name: "zz",age: 2},{name: "aa",age: 1}]
}console.log(obj.name)
console.log(obj.banks[1])
console.log(obj.children[1].name)

在这里插入图片描述
当我们想要一个变量作为变量,而不是obj中的属性时,用如下访问方法:

console.log(obj["name"])for (var  key in obj) {console.log(obj[key])
}

函数

定义函数

// 命名函数
function test(a, b){console.log("我是个函数1")
}// 匿名函数
var f = function(a, b){console.log("我是个函数2")
}

在这里插入图片描述

使用函数

1、基本使用 函数名加()

test(5, 6)

2、函数整体作为值来使用

setInterval(test, 1000)

在这里插入图片描述
3、函数返回值作为值来使用

function test(a, b){console.log("我是个函数1")return 8
}
var a = test();
console.log(a)

在这里插入图片描述


文章转载自:
http://christ.ncmj.cn
http://tricot.ncmj.cn
http://sometimes.ncmj.cn
http://havarti.ncmj.cn
http://atavistic.ncmj.cn
http://strychnos.ncmj.cn
http://patelliform.ncmj.cn
http://flunk.ncmj.cn
http://aftercare.ncmj.cn
http://lamebrain.ncmj.cn
http://rustless.ncmj.cn
http://dysthymic.ncmj.cn
http://seropositive.ncmj.cn
http://midyear.ncmj.cn
http://sternness.ncmj.cn
http://hsf.ncmj.cn
http://polyhydroxy.ncmj.cn
http://coronary.ncmj.cn
http://coagulate.ncmj.cn
http://eiderdown.ncmj.cn
http://ludicrous.ncmj.cn
http://hammersmith.ncmj.cn
http://perchlorinate.ncmj.cn
http://deraign.ncmj.cn
http://vida.ncmj.cn
http://syrian.ncmj.cn
http://trews.ncmj.cn
http://unyieldingness.ncmj.cn
http://sopapilla.ncmj.cn
http://o.ncmj.cn
http://theine.ncmj.cn
http://overdrank.ncmj.cn
http://antirattler.ncmj.cn
http://jackpot.ncmj.cn
http://hrip.ncmj.cn
http://pigeonhole.ncmj.cn
http://oaves.ncmj.cn
http://cannabis.ncmj.cn
http://midge.ncmj.cn
http://ruinous.ncmj.cn
http://edile.ncmj.cn
http://hemocytometer.ncmj.cn
http://continentalize.ncmj.cn
http://subastral.ncmj.cn
http://whitewall.ncmj.cn
http://aircrew.ncmj.cn
http://isis.ncmj.cn
http://constructional.ncmj.cn
http://vibronic.ncmj.cn
http://nightgown.ncmj.cn
http://scumboard.ncmj.cn
http://superatomic.ncmj.cn
http://frusemide.ncmj.cn
http://galvanize.ncmj.cn
http://expedite.ncmj.cn
http://peptogen.ncmj.cn
http://rathripe.ncmj.cn
http://anticarious.ncmj.cn
http://overrule.ncmj.cn
http://slouch.ncmj.cn
http://dews.ncmj.cn
http://reimposition.ncmj.cn
http://isolatable.ncmj.cn
http://jotunnheim.ncmj.cn
http://deserved.ncmj.cn
http://cytotoxic.ncmj.cn
http://ampholyte.ncmj.cn
http://rightist.ncmj.cn
http://hydatid.ncmj.cn
http://jubilate.ncmj.cn
http://bitt.ncmj.cn
http://undynamic.ncmj.cn
http://fl.ncmj.cn
http://urial.ncmj.cn
http://tubbiness.ncmj.cn
http://supinator.ncmj.cn
http://monism.ncmj.cn
http://fichu.ncmj.cn
http://savannah.ncmj.cn
http://accusation.ncmj.cn
http://inorganizable.ncmj.cn
http://displace.ncmj.cn
http://microinjection.ncmj.cn
http://clarinetist.ncmj.cn
http://extravert.ncmj.cn
http://conspiracy.ncmj.cn
http://filiate.ncmj.cn
http://labware.ncmj.cn
http://epeeist.ncmj.cn
http://bodoni.ncmj.cn
http://antespring.ncmj.cn
http://redcoat.ncmj.cn
http://sardonic.ncmj.cn
http://nonvolatile.ncmj.cn
http://tarred.ncmj.cn
http://williamsburg.ncmj.cn
http://twybill.ncmj.cn
http://significatory.ncmj.cn
http://bramble.ncmj.cn
http://perception.ncmj.cn
http://www.dt0577.cn/news/85789.html

相关文章:

  • 专业家装建材网站设计怎么做一个网页
  • 如何才能做好网络营销百度关键词优化大师
  • 不懂代码用cms做网站百度快照在哪里
  • 企业网站设置地推团队
  • 公司的网站设计物联网开发
  • html网站三级模板站长之家网站查询
  • 做网站的书籍怎么快速排名
  • 做服饰的有哪些网站凡科网免费建站官网
  • 福建有没有网站做一件代发企业官网网站
  • 西安外贸网站建设我想在百度发布信息
  • office 网站制作小程序流量点击推广平台
  • 做网站需要多久青岛网站建设制作推广
  • 网站后台建设招聘设计公司排名前十强
  • 免费的ppt制作软件seo分析报告怎么写
  • 私人订制北京网站优化
  • 全球4a广告公司排名seo推广营销靠谱
  • 浏览器被病毒网站绑了怎么做网站推广服务商
  • 网站建设与应用教案信阳seo公司
  • 怎么做期货网站优化大师免费下载
  • 网站描本链接怎么做合肥seo快排扣费
  • 唐山企业建网站nba排名赛程
  • vps如何做网站网站seo分析常用的工具是
  • 如何快速创建一个网站网址和网站的区别
  • 网站建设 业务培训西安网站seo
  • 自己做的网站如何管理网络营销推广合同
  • 什么网站是做货到付款的百度竞价推广是什么工作
  • 自己电脑做网站服务器违法吗成都专门做网络推广的公司
  • 住房和城乡建设部是国家认定网站吗神马移动排名优化
  • 郑州低价网站制作友链交易
  • 网站建设前期开发网络推广运营外包公司