zoukankan      html  css  js  c++  java
  • javascript学习笔记

    多点用javascript数组,javascript对象,这些东西性能是很高的,而且代码美观,多用水平才能提高,别一天到晚就只会var个变量。

    javascript是区分大小写的语言,也就是说,关键字、变量、函数名、和所有的标识符都必须采取一致的大小写形式。

    javascript支持两种注释,在行尾“//” 和 “/*  */”之间的文本 也会当做注释。 

    JavaScript标识符必须以字母、下划线(_)或美元符($)开始。后续的字符可以是字母、数字、下划线或美元符。数字不允许在首字符出现。

    javascript为假的值

    复制代码
            window.onload = function () {
                if (null) {
                    document.write("null为真");
                }
                else {
                    document.write("null为假");
                }
                document.write("<br/>");
                if (undefined) {
                    document.write("undefined为真");
                }
                else {
                    document.write("undefined为假");
                }
                document.write("<br/>");
                if (0) {
                    document.write("0为真")
                }
                else {
                    document.write("0为假");
                }
                document.write("<br/>");
                if (-0) {
                    document.write("-0为真")
                }
                else {
                    document.write("-0为假");
                }
                document.write("<br/>");
                if ("") {
                    document.write("空字符串为真");
                }
                else {
                    document.write("空字符串为假");
                }
            }
         //输入 , 全为 假
    复制代码
  • 相关阅读:
    创建数据库,用户,表
    Tomcat安装配置
    常用JS
    win8以管理员身份安装软件
    mybatis中@Param用法
    springMVC3
    SpringMVC参数绑定
    SpringMVC2
    查询数据库元数据
    mybatis 中 foreach collection的三种用法
  • 原文地址:https://www.cnblogs.com/mingxuantongxue/p/3881346.html
Copyright © 2011-2022 走看看