zoukankan      html  css  js  c++  java
  • 常用知识集合

    HTML DOM removeAttribute() 方法

    removeAttribute() 方法删除指定的属性。

    document.getElementsByTagName("H1")[0].removeAttribute("style");

    HTML DOM removeAttributeNode() 方法  

    并且返回被删除的属性,以 Attr 对象的形式

    var n=document.getElementsByTagName("H1")[0];
    var a=n.getAttributeNode("style");
    n.removeAttributeNode(a);

    关于html5 input type="search"标签

    https://blog.csdn.net/xxxxxmiss/article/details/51534626    

    HTML <input> 标签的 disabled 属性

    disabled 属性规定应该禁用 input 元素  注释:disabled 属性无法与 <input type="hidden"> 一起使用。

    返回、前进页面的方法下面总结一下

    window.location.reload() //刷新
    window.history.go(1) //前进
    window.history.go(-1) //后退
    window.history.forward() //前进
    window.history.back() 后退+刷新

    一些区别

    history.back(-1)//直接返回当前页的上一页,数据全部消息,是个新页面
    history.go(-1)//也是返回当前页的上一页,不过表单里的数据全部还在
  • 相关阅读:
    httpclient 5.0 设置超时时间
    httpclient raw请求
    使用EasyUI-datagrid-export.js导出Excel,不导出隐藏列
    ExpressSet 虚拟适配器
    中断模式队列
    autohotkey 线程入门
    读rbtree
    树莓派串口
    MCP3421使用详解
    PMOS开关电路
  • 原文地址:https://www.cnblogs.com/1010wjf/p/8618076.html
Copyright © 2011-2022 走看看