• jQuery DOM


    创建节点

    var box = $('<div id="box">节点</div>'); 创建一个节点
    $('body').append(box); //将节点插入到<body>元素内部

    插入节点

    append(content) 向指定元素内部后面插入节点 content
    append(function(index,html){}) 使用匿名函数向指定元素内部后面插入节点
    appendTo(content) 将指定元素移入到指定元素 content 内部后面
    prepend(content) 向指定元素 content 内部的前面插入节点
    prepend(function(index,html){}) 使用匿名函数向指定元素内部的前面插入节点
    prependTo(content) 将指定元素移入到指定元素 content 内部前面

    外部插入节点方法

    after(content) 向指定元素的外部后面插入节点
    content after(function(index,html){}) 使用匿名函数向指定元素的外部后面插入节点
    before(content) 向指定元素的外部前面插入节点 content
    before(function(index,html){}) 使用匿名函数向指定元素的外部前面插入节点
    insertAfter(content) 将指定节点移到指定元素 content 外部的后面
    insertBefore(content) 将指定节点移到指定元素 content 外部的前面

    包裹节点

    wrap(html) 向指定元素包裹一层 html 代码
    wrap(element) 向指定元素包裹一层 DOM 对象节点
    wrap(function(index){}) 使用匿名函数向指定元素包裹一层自定义内容
    unwrap() 移除一层指定元素包裹的内容
    wrapAll(html) 用 html 将所有元素包裹到一起
    wrapAll(element) 用 DOM 对象将所有元素包裹在一起
    wrapInner(html) 向指定元素的子内容包裹一层 html
    wrapInner(element) 向指定元素的子内容包裹一层 DOM 对象节点
    wrapInner(function(index){}) 用匿名函数向指定元素的子内容包裹一层


    节点操作
    $('body').append($('div').clone(true)); 复制一个节点添加到 HTML 中
    $('div').remove(); 直接删除 div 元素
    $('div').detach(); 保留事件行为的删除
    $('div').empty(); 删除掉节点里的内容

    $('div').replaceWith('<span>节点</span>'); 将 div 替换成 span 元素
    $('<span>节点</span>').replaceAll('div'); 同上

  • 相关阅读:
    Linux 终端管理工具,让终端管理更简单。这一期是【FinalShell】
    django添加检查用户名和手机号数量接口
    vue发送短信逻辑
    使用celery异步发送短信
    redis的pipline使用
    后端注册接口完善
    检查用户名是否使用接口
    celery配置与基本使用
    Celery介绍
    ubuntu开发机初始化
  • 原文地址:https://www.cnblogs.com/xiukang/p/8966525.html
Copyright © 2020-2023  润新知