上周参加了金山的面试,结果被刷了,很痛心。好啦,不说啦,接下来我们一起来学习吧。
方式一:
<body>
<script>
docunment.write("你好,Javascript");/直接在浏览器窗口上输出“你好,Javascript”
</script>
</body>
方式二:通过代码调用执行Javascript程序
<head>
<script>
function myfun(){
docunment.write("你好,Javascript");/直接在浏览器窗口上输出“你好,Javascript”
}
</script>
</head>
<body>
<script>
myfun();
</script>
</body>
方式三:使用“Javascript:”调用JavaScript程序
<head>
<script>
function myfun(){
docunment.write("你好,Javascript");/直接在浏览器窗口上输出“你好,Javascript”
}
</script>
</head>
<body>
//在单击链接时,调用myfun函数,在网页上输出“你好,javascript”
<a href="Javascript:myfun">单击这里</a>
</body>
方式四:事件激发Javascript程序
这个就不多说了,这种方式是我们在编程序过程中用的最多的,自己慢慢领会吧。