Chapter 2 JavaScript Basic】的更多相关文章

Has 5 primitive types: Undefined, Null, Boolean, String, Number. typeof  operator Undefined return undefined Null return object Boolean return boolean String return string Number return number Null returns object, this is an error in the original JS.…
1.2.2 文档对象模型     DHTML的出现让开发人员无需重新加载页面就可以修改其外观了. 1.2.3 浏览器对象模型(BOM)     BOM真正与众不同的地方在于他作为javascript实现的一部分,但是却没有相关的标准.这些问题咋html5中得到解决.     人们习惯上把所有针对浏览器的javascript扩展算作BOM 的一部分.      1.4 小结 来自为知笔记(Wiz)…
1.  logic operation : '&&' and '||'  .For this two logic operations,its' results are inconclusive.the difference between this two logic operations  and others is that they don't change the data type of the operands and also don't change the data t…
Exercise-1 Write a JavaScript program to display the current day and time in the following format. Today is : Tuesday. Current time is : 2PM : 21 : 38 const today = new Date(); const day = today.getDay(); const daylist = ["Sunday", "Monday&…
1.this 的指向 1).由 new 调用?绑定到新创建的对象. 2). 由 call 或者 apply(或者 bind)调用?绑定到指定的对象. 3). 由上下文对象调用?绑定到那个上下文对象. 4). 默认:在严格模式下绑定到 undefined,否则绑定到全局对象. 2.new关键字的过程 创建一个新对象 将 this 绑定到新创建的对象上 在新创建的对象上添加一个叫 __proto__ 的属性,指向构造函数的原型 prototype 对象 返回新创建的对象 return this fu…
I know it well:I read it in the grammar long ago.—William Shakespeare, The Tragedy(悲剧:灾难:惨案) of Titus Andronicus This chapter introduces the grammar of the good parts of JavaScript, presenting a quick overview of how the language is structured. We wi…
Chapter 0 为什么读这本书?作为js入门书,补基础,由于本书代码demo较简单,并没有贴代码,只记录一些自己要注意的知识点以及代码脚本 Chapter 1: javascript简史 DOM全称是document object model(文档对象模型),假设把文档看做一个对象,那DOM就是如何利用HTML和XML去对这个对象进行操作和控制的标准 1.2 AJAX(异步传输技术)引发了一次学习DOM脚本编程的热潮: 传统的Web应用交互由用户出发一个HTTP请求到服务器,服务器对其进行处…
编码风格 1.概述 "编程风格"(programming style)指的是编写代码的样式规则.不同的程序员,往往有不同的编程风格. 有人说,编译器的规范叫做"语法规则"(grammar),这是程序员必须遵守的:而编译器忽略的部分,就叫"编程风格"(programming style),这是程序员可以自由选择的.这种说法不完全正确,程序员固然可以自由选择编程风格,但是好的编程风格有助于写出质量更高.错误更少.更易于维护的程序. 所以,编程风格的选…
*******************************  Chapter 11 DOM扩展  ******************************* 主要的扩展是 选择符API 和 HTML5 选择符API: document.querySelector('.img'); document.querySelector('#test'); document.querySelectorAll('a'); //这个方式浏览器支持很少,返回是否可以查询得到的结果 document.mat…
说明:此类博客来自以下链接,对原内容做了标注重点知识,此处仅供自己学习参考! 来源:https://wangdoc.com/javascript/basic/introduction.html 1. 语句 JavaScript 程序的执行单位为行(line),也就是一行一行地执行.一般情况下,每一行就是一个语句. 语句(statement)是为了完成某种任务而进行的操作,比如下面就是一行赋值语句. var a = 1 + 3; 这条语句先用var命令,声明了变量a,然后将1 + 3的运算结果赋值…