JS第一天
Posted 新年新气象934060369
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS第一天相关的知识,希望对你有一定的参考价值。
第一个hello world
<script type="text/javascript"> document.write("hello world"+"<br/>"); </script>
浏览器名称以及版本号
/*获取浏览器名称以及版本号*/ document.write("名称:"+navigator.appName+"<br/>"); document.writeln("版本号:"+navigator.appVersion+"<br/>");
js大小写敏感 (title没有定义这里就直接使用了,js属于弱语言,不定义可以直接使用)
/* 大小写敏感 语句最后面的一个分号可有可无*/ title = "小明"; var Title = "小王" alert(title);
创建对象:
function Card(ovner,rate){ this.ovner = ovner; this.rate = rate; } var mycar = new Card("sun","400km"); document.write("这辆车子:"+mycar.ovner+" "+mycar.rate);
遍历数组:
var title = new Array("12","435","我","是"); document.write("<ul>") for(n in title){ document.write("<li>"+"name:"+title[n]+"</li>"); } document.write("</ul>")
以上是关于JS第一天的主要内容,如果未能解决你的问题,请参考以下文章