Code Monkey home page Code Monkey logo

Comments (2)

fefit avatar fefit commented on August 15, 2024

@DjakaTechnology Do you mean that you want to remove the class attribute of all elements with the class attribute? if so, you need to first find all elements with class attribute, then remove the attribute, some code like below:

let html = r#"
<!DOCTYP html>
<html>
  <head></head>
  <body>
    <div class="abc">
      <div class="def">div1</div>
      <div>
        <span class="g">span1</span>
      </div>
    </div>
  </body>
</html>
"#;
let root = Vis::load(html)?;
// find elements with class attribute and remote the attribute
// there are three elements with the class attribute, `abc`, `def`, `g`
assert_eq!(root.find("[class]").length(), 3);
root.find("[class]").remove_attr("class");
// all elements's `class` attribute has been removed
assert_eq!(root.find("[class]").length(), 0);

from visdom.

fefit avatar fefit commented on August 15, 2024

@DjakaTechnology I will close this issue, if you still have questions about this issue, feel free to reopen it.

from visdom.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.