zoukankan      html  css  js  c++  java
  • 函数整理

    <script>
    alert()/*带括号的称为函数*/
    attr.length /*称为属性*/
    一 无参数函数
    function show()
    {
    alert(hello); /*定义函数*/
    }
    show(); /* 执行函数,在哪定义就在哪执行*/
    二 有参数的函数
    function jia(a,b)
    {
    alert(a+b)
    }
    jia(5,6) 定义两个参数
    三 有返回值的参数
    function cheng(a*b)
    {
    return a*b
    }
    var ji=cheng(5,6);
    alert(ji)

    函数四要素:1返回类型 2 函数名 3 参数 4函数体
    日期时间函数(需要用变量调用)
    var b=new Date();获取当前时间

    document.write(b.getTime());/*获取时间戳,一串数字*/
    document.write(b.getMonth());/*要注意加一,获取的比实际少一个月*/
    document.write(b.getDate());/*获取的天*/
    document.write(b.getDay());/*获取的星期几*/
    document.write(b.getHours());/*huoqu小时*/
    document.write(b.getMilliseconds())/*获取的毫秒*/
    /*数学函数(需要用math调用)*/
    alert(math.abs(x))/*返回数的绝对值*/
    alert(math.round(x))/*四舍五入*/
    alert(math.max(x,y))/*去两个值中的最大值*/
    alert(math.min(x,y))/*去两个值中的最小值*/
    function zuida(a,b)
    {
    if(a>b){
    return a;     这种方法很简单,可以直接自己写出来
    }else{
    return b;
    }
    }
    alert(math.random());            0-1随机数
    alert(math.random()*10)      乘以10,变成0-10随机数

    </script>

  • 相关阅读:
    游戏 猜拳游戏
    python的变量 以及操作系统
    python的异常处理
    python 三元运算
    python random 的用法
    python基础
    Round #417 A. Sagheer and Crossroads(Div.2)
    Round #416 B. Vladik and Complicated Book(Div.2)
    Round #416 A. Vladik and Courtesy(Div.2)
    Educational Round 26 D. Round Subset
  • 原文地址:https://www.cnblogs.com/zqld/p/6612056.html
Copyright © 2011-2022 走看看