You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
use visdom::{types::BoxDynError,Vis};fnmain()->Result<(),BoxDynError>{constHTML:&str = r#"<div id="contain"><p class="item"></p></div>"#;letmut v = Vis::load(HTML)?;
v.set_attr("class",Some("ppp"));println!("{}",v.outer_html());Ok(())}
输出:
期望:
对比Jquery
输出:
visdom 需要通过
v.find("#contain").set_attr("class", Some("ppp"));
手动选择元素才能设置成功The text was updated successfully, but these errors were encountered: