• 页面输出消息的5种方法


    1alert(“”)在页面弹窗中显示消息

    2confirm(“”)弹窗显示与if-else等条件分支语句配合使用

    function confirmFun(){
        var flag = confirm('选择确定或取消');
        if(flag){
            alert('您选择了确定');
        }else{
            alert('您选择了取消');
        }
    } 

     

    3prompt(“”)接收用户输入的弹窗

    var name = prompt('请输入您的名字');
    console.log(name);

    返回值是 string 类型。当不输入内容时返回值是,点击取消,name = "null" 点击确定 name = ""

    4document.write(“”)将内容直接打印到页面上,也可以放置html标签

       会重新绘制页面。慎用!

    5console.log(“”)在控制台中输出消息

    学习、交流、记录、编辑一部自己的知识库
  • 相关阅读:
    第一次热身赛和正式比赛感想
    简明解释算法中的大O符号
    poj 3045
    poj 3104
    poj 3273
    poj 3258
    poj 2456
    二分法小结
    Poj 2718 Smallest Difference
    GCJ——Crazy Rows (2009 Round 2 A)
  • 原文地址:https://www.cnblogs.com/z-one/p/6526385.html
Copyright © 2020-2023  润新知