4、行内引入,结合事件才行
5、prompt的使用,输入d窗
6、警告语句:输出d窗
alert('hello world')
7、输出到页面
document.write("hello.ws")
8、控制台console的使用
9、变量的练习
10、检测数据类型的运算符
11、undefined:表示空变量,变量被声明但没有被赋值
12、null:空对象,表示没有东西。连声明都乜有;
13、setTimeout的使用
setTimeout(function(){
alert('hello world')
},4000);
14、匿名函数
(function(){
alert('hello world')
})();
15、内置功能函数:将字符串转成整形
16、通过js设置行内样式
xxx.style.cssText="color:blue;font-size:20px;"
xxx指的是变量
17、js添加类名和删除类名
xxx.classList.add("类名");
xxx.classlist.remove("类名");
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)