本文介绍: JavasSript是种网页脚本语言,虽然名字中含有Java,但它与Java语言是两种不同的语言。不过JavaScript语法和Java语言的语法非常类似。JavasSript代码可以很容易地嵌入到到HTML页面中。浏览器对JavaScript脚本程序进行解释执行。JavaScript和Java一样是对大小敏感的…..

1.JavaScript简介

2.JavaScript注释

JavaScript注释有3种写法

3.JavaScript语法 :

变量定义

函数定义

4.JavaScript内置对象

4.1 window作用

出现提示框

window对象可以 跳出提示框,主要有如下功能

<!-- 出现提示框 -->
<script type="text/javascript">
 
  window.alert("消息框")    //出现提示框

  result = window.confirm("您确认提交吗?")  //出现确认框,根据你的选择会有一个返回值

  str = window.prompt("请输入一个字符串","")   //出现输入框,获取输入的值
</script>
打开关闭窗口
定时器

4.2 history的作用

4.3 document的作用 :

网页输出

网页输出document.writeln( )

<script>
    //在网页输出内容: 用document的.writenlen()方法
    document.writeln(“你好!”);
</script>
<script type="text/javascript">
// 展示  8X8的国际象棋
// table标签
document.writeln("<table width=400 height=400 border=1>")
for (i = 1; i <= 8; i++) {
    //tr开始标签
    document.writeln("<tr>");
    for (j = 1; j <= 8; j++) {
        color = "black"; //黑色
        if ((i + j) % 2 == 0) {
            color = "white"; //白色
        }
        //td标签
        document.writeln("<td bgcolor=" + color + "></td>");
    }
    document.writeln("</tr>");
}
document.writeln("</table>")
</script>
设置网页属性
访问文档元素,特别是表单元素
<script type="text/javascript">
    function add() {
        //得到这两个文本框的内容(且都转换数字类型)
        n1 = Number(document.form1.txt1.value)
        n2 = Number(document.form1.txt2.value)
        
        //给表单中的txt3赋值
        document.form1.txt3.value = n1 + n2;
    }
</script>
<form name="form1">
    <input name="txt1" type="text"><br>
    <input name="txt2" type="text"><br>
    <input type="button" onclick="add()" value="求和"><br>
    <input name="txt3" type="text"><br>
</form>
<script type="text/javascript">
    function validate() {
        //得到这两个文本的内容
        account = document.loginForm.account.value;
        password = document.loginForm.password.value;
        //验证这两个的内容
        if (account == "") {
            window.alert("账号不能为空!");
            //将鼠标光标聚焦在账号栏上
            document.loginForm.account.focus();
            return;
        }else if (password == "") {
            window.alert("密码不能为空!");
            document.loginForm.password.focus();
            return;
        }
        //密码账号都不为空,才提交该表单
        document.loginForm.submit();
    }
</script>
欢迎您登录:
<form name="loginForm">
    输入账号: <input name="account" type="text"><br>
    输入密码: <input name="password" type="password"><br>
    <input type="button" onclick="validate()" value="登录">
</form>

4.4 location的作用

原文地址:https://blog.csdn.net/m0_70720417/article/details/134757610

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任

如若转载,请注明出处:http://www.7code.cn/show_47138.html

如若内容造成侵权/违法违规/事实不符,请联系代码007邮箱suwngjj01@126.com进行投诉反馈,一经查实,立即删除

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注