JavaScript-----WEB脚本语言

    xiaoxiao2022-07-07  170

    内嵌式

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <title>内嵌式</title> <script type="text/javascript"> document.write("欢迎"); </script> </head> </html>

    嵌入式

    <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>外链式</title> <script type="text/javascript" src="demo01.js"></script> </head> </html>

    变量:var声明变量,不需要指明变量类型

    事件处理:

    <body> <input type="button" name="btn" value="点我" onclick="alert('Hello');"/> </body>

    常用对象:

    1)windows对象:

    alert() ,confirm(), prompt() 警告框,确认框,用户输入框

    2)data对象

    3)string对象

    最新回复(0)