-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
高三精读小组课后作业(01期) #13
Comments
5.请说出下方脚本的执行结果 var a;
if(a==undefined) alert('undefined');
if(a==null) alert('null') 结果就是 先弹出 undefined 再 弹出 null 原因就是 undefined == null |
1、BOM 对象 其中 window 对象为其核心, 有一些我们常用的,navigator 对象(了解浏览器信息)、location 对象了解页面信息、history 对象、screen对象 |
2、<script>标签中defer属性的作用 是当 该脚本对文档内容不能改变时候,我们加入 defer 属性,可以加快对文档的处理速度。 |
3、在xhtml 这段代码不能 顺利的执行,因为在 xml 中 < > 都会被视为 标签,而不是 大于号、小于号、 |
4、它的脚本执行结果 是 "a is smaller" ,原因是 虽然我们最开始是定义了 a , b 但是后来在 未使用 var 的 b=2 相当于一个全局变量,从而 覆盖掉 之前b=0,所以。。。 |
@Depsi 谢谢 提醒 |
6、脚本的执行结果 //9 + 16 + 120 = 145 7、 function toOctal(binary){
return parseInt(binary,2).toString(8);
} 8、操作符“>>”和“>>>”的区别 在于,前者是 带正负的位运算,后者是不带正负的位运算. 9、undefined \ function(){return 0} \ c2 10、不能。 var help = function(i){
return function(x){
alert(i);
}
}
for(var i= 0,l=10,obj=[];i<=l;i++){
obj[i] = help(i);
}
obj[2](); 11、分别是 2、9 |
#1-67页
答案将于一周后更新于本贴,大家可以跟帖写答案看自己对基础知识的掌握程度如何。
跟帖回答案的都应自行思考完成,不然没有任何意义
1. 请随便列举出4个或更多个BOM对象
2. 简单描述下
<script>
标签中defer
属性的作用3.下面这段代码在XHTML中能顺利运行么?若存在问题,你能想出哪些办法解决它:
4.下方代码截取自某个页面的body部分,请问它的脚本执行结果会是什么?
5.请说出下方脚本的执行结果,并简述其原因:
6.请说出下方脚本的执行结果:
7.请完成函数toOctal 的编写,要求能将一个二进制数值转为八进制:
8.操作符“>>”和“>>>”的区别是什么?
9.请说出下方脚本执行结果:
10.下述脚本能正确alert出2么?如果不行请写出解决方案:
11.请说出下方脚本执行结果:
The text was updated successfully, but these errors were encountered: