gpt4 book ai didi

jquery - jquery中删除多个元素

转载 作者:行者123 更新时间:2023-12-03 22:07:32 25 4
gpt4 key购买 nike

在我当前的代码中,我有这样的

$("#foo").remove();
$("#bar").remove();

有没有办法通过使用remove()一次来删除多个元素?

最佳答案

不限于.remove(),只是用逗号分隔选择器:

$("#foo, #bar").remove();

Multiple Selector (“selector1, selector2, selectorN”) | jQuery API Documentation

Description: Selects the combined results of all the specified selectors.

jQuery( "selector1, selector2, selectorN" )

selector1: Any valid selector.

selector2: Another valid selector.

selectorN: As many more valid selectors as you like.

关于jquery - jquery中删除多个元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23103739/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com