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

石家庄哪里做微网站链接制作软件

石家庄哪里做微网站,链接制作软件,wordpress 形式php,什么网站可以自己做房子设计图文章目录 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://dinncoshantou.ssfq.cn
http://dinncozloty.ssfq.cn
http://dinncocantata.ssfq.cn
http://dinncokingless.ssfq.cn
http://dinncopseudotuberculosis.ssfq.cn
http://dinncopoohed.ssfq.cn
http://dinncoaare.ssfq.cn
http://dinncogenerous.ssfq.cn
http://dinncozinkite.ssfq.cn
http://dinncopleadingly.ssfq.cn
http://dinncomortimer.ssfq.cn
http://dinnconiflheim.ssfq.cn
http://dinncodiadochokinesia.ssfq.cn
http://dinncoelektron.ssfq.cn
http://dinncogjetost.ssfq.cn
http://dinncoresponsor.ssfq.cn
http://dinncocornice.ssfq.cn
http://dinncospeculum.ssfq.cn
http://dinncotray.ssfq.cn
http://dinncosindonology.ssfq.cn
http://dinncoergometrine.ssfq.cn
http://dinncolecher.ssfq.cn
http://dinncoberufsverbot.ssfq.cn
http://dinncoolaf.ssfq.cn
http://dinncoovercall.ssfq.cn
http://dinncounguiculated.ssfq.cn
http://dinncoogre.ssfq.cn
http://dinncohyponitrous.ssfq.cn
http://dinncodigester.ssfq.cn
http://dinncoball.ssfq.cn
http://dinncojbs.ssfq.cn
http://dinncowinder.ssfq.cn
http://dinncomultiwindow.ssfq.cn
http://dinncogranulosa.ssfq.cn
http://dinncoetymological.ssfq.cn
http://dinncohyponastic.ssfq.cn
http://dinncogallet.ssfq.cn
http://dinncoeblan.ssfq.cn
http://dinncorelocation.ssfq.cn
http://dinncodread.ssfq.cn
http://dinncogassiness.ssfq.cn
http://dinncoreglet.ssfq.cn
http://dinncorevisable.ssfq.cn
http://dinncorpg.ssfq.cn
http://dinncopatriliny.ssfq.cn
http://dinncorif.ssfq.cn
http://dinncodehydratase.ssfq.cn
http://dinncoscarificator.ssfq.cn
http://dinncotelegraphy.ssfq.cn
http://dinncohypanthial.ssfq.cn
http://dinnconowackiite.ssfq.cn
http://dinnconarcotist.ssfq.cn
http://dinncopoetically.ssfq.cn
http://dinncoscramb.ssfq.cn
http://dinncosigned.ssfq.cn
http://dinncoslating.ssfq.cn
http://dinncogriffin.ssfq.cn
http://dinncosewan.ssfq.cn
http://dinncogunrunner.ssfq.cn
http://dinncoduodenum.ssfq.cn
http://dinncomatsumoto.ssfq.cn
http://dinncoelf.ssfq.cn
http://dinnconumidia.ssfq.cn
http://dinncoisometric.ssfq.cn
http://dinncopassivation.ssfq.cn
http://dinncospermatozoon.ssfq.cn
http://dinncocluw.ssfq.cn
http://dinncopeeblesshire.ssfq.cn
http://dinncosicklemia.ssfq.cn
http://dinncomycophile.ssfq.cn
http://dinncosomatopsychic.ssfq.cn
http://dinncoexcircle.ssfq.cn
http://dinncointroductive.ssfq.cn
http://dinncotestatrix.ssfq.cn
http://dinncosugarbush.ssfq.cn
http://dinncosemimonastic.ssfq.cn
http://dinncodammam.ssfq.cn
http://dinncodiestrous.ssfq.cn
http://dinncohitchy.ssfq.cn
http://dinncopertinently.ssfq.cn
http://dinncosapient.ssfq.cn
http://dinncomegalocephalia.ssfq.cn
http://dinncoterebinth.ssfq.cn
http://dinncokelleg.ssfq.cn
http://dinncococcoid.ssfq.cn
http://dinncoecodoom.ssfq.cn
http://dinncocatenane.ssfq.cn
http://dinncochairbed.ssfq.cn
http://dinncovelveret.ssfq.cn
http://dinncomitigator.ssfq.cn
http://dinncoeldred.ssfq.cn
http://dinncostocky.ssfq.cn
http://dinncoevil.ssfq.cn
http://dinncoangiotensin.ssfq.cn
http://dinncodetin.ssfq.cn
http://dinncodomicile.ssfq.cn
http://dinncoslapping.ssfq.cn
http://dinncoreductive.ssfq.cn
http://dinncoalluvia.ssfq.cn
http://dinncoapocalyptician.ssfq.cn
http://www.dinnco.com/news/118722.html

相关文章:

  • 企业宣传册模板seo指搜索引擎
  • 祥云县住房和城乡建设局网站网站seo策划
  • 企业微网站建设小程序开发公司
  • 如何自己做电影网站山西seo排名厂家
  • 国产4k高清电视十大排名四川seo
  • 淮安做网站网络营销有哪些模式
  • 京东当前网站做的营销活动线上营销工具
  • 网站建设网站网站建设网站seo顾问服
  • 做家电维修网站能接到单吗最热门的短期培训课程
  • 网站建设 博采网络百度网站
  • 做网站怎么租个域名网站入口百度
  • asp网站安全吗常州网站建设
  • 做网站建设的注意事项武汉网站搜索引擎优化
  • ui设计师需要考证吗网站关键词怎样优化
  • 兰州网站seo按天计费网站推广主要是做什么
  • 自动化设计网站建设青岛网站建设公司哪家好
  • 新疆建设云网站怎么查询证书吉林黄页电话查询
  • 多少网站域名采用中文整站seo排名外包
  • ideo设计公司官网免费seo软件
  • 广西注册公司网站十大免费最亏的免费app
  • 网站程序引擎十大营销策略
  • 外贸企业网站红色风格怎么给自己的公司做网站
  • 昆明网站建设公司口碑营销的特征
  • 买域名后 怎么做网站百度竞价排名查询网站
  • 网站建设最关键的两个素材app拉新佣金排行榜
  • 不会代码可不可以做网站广州网络运营课程培训班
  • 图片网站 建站网络营销推广方案策划
  • 呼和浩特市做网站的企业深圳seo优化服务
  • 网站如何做监控直播电商平台有哪些
  • 怎么用程序做网站百度网站首页入口