document.getElementsByClassName('btn-cart').removeAttribute("class")


请帮忙 !!!我需要在文档加载时删除属性标题。它对我不起作用。提前致谢。

最佳答案

尝试

document.getElementsByClassName('btn-cart')[0].removeAttribute("class");

09-19 11:40