• 笔记一


    divsectionarticle
    div充当容器的角色,用来设置某一块的总体属性(一个div里面可能包含多个section);
    section用于强调某一个模块,强调模块本身是作为一个整体的;
    article用于强调某一段独立的内容,强调内容的独立性。

    js返回

    链接式:

    <a href="javascript:history.go(-1)">返回上一步</a>

    <a href="<%=Request.ServerVariables("HTTP_REFERER")%>">返回上一步</a>

    按钮式:

    <INPUT name="pclog" type="button" value="GO" onClick="location.href=’http://www.ekesn.com/‘">
    直接跳转式:

    <script>window.location.href=’http://www.ekesn.com‘;</script>

    JS跳转页面参考代码
    第一种: 
    <script language="javascript" type="text/javascript"> 
    window.location.href="login.jsp?backurl="+window.location.href; 
    </script> 
    第二种: 
    <script language="javascript"> 
    alert("返回"); 
    window.history.back(-1); 
    </script> 
    第三种: 
    <script language="javascript"> 
    window.navigate("top.jsp"); 
    </script> 
    第四种: 
    <script language="JavaScript"> 
    self.location=’top.htm’; 
    </script> 
    第五种: 
    <script language="javascript"> 
    alert("非法访问!"); 
    top.location=’xx.jsp’; 
    </script>

    List排序:
     Collections.sort(lettersList, new Comparator<SurnameLetters>() {
                            @Override
                            public int compare(SurnameLetters user1, SurnameLetters user2) {
                                Integer id1 = user1.getLettersIndex();
                                Integer id2 = user2.getLettersIndex();
                                return id2.compareTo(id1);
                            }
                        });
  • 相关阅读:
    Go语言版本的helloworld
    编译Elasticsearch源码
    Intellij IDEA将java源码打成jar包
    搭建Elasticsearch集群常见问题
    棣小天儿的第一个python程序
    Json反序列化Map的key不能是Object
    mac本配置python环境
    Timestamp解析0000-00-00 00:00:00报格式错误
    Spring-Mybatis配置多数据源
    mysql新建数据库时的collation选择(转)
  • 原文地址:https://www.cnblogs.com/NCL--/p/9390666.html
Copyright © 2020-2023  润新知