前言:JS的第三节课,这节课主要讲函数、对象及方法。
内容:
1.九九乘法表例子:
HTML代码:
1 <!DOCTYPE html> 2 <html xmlns="http://www.w3.org/1999/xhtml"> 3 <head> 4 <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> 5 <title></title> 6 <script src="js/demo.js"></script> 7 </head> 8 <body> 9 <input type="button" value="我是一个按钮" onclick="MyClick()"/> 10 <div id="dcon"></div> 11 </body> 12 </html>