我有一个 id 为的 div,divId
并且我编写了一个 JS 脚本,通过它我突出显示了“this”关键字。
这是JS代码
var regex = new RegExp('this',"gi");
document.getElementById("divId").innerHTML=document.getElementById("divId").
innerHTML.replace(regex, function(matched)
{return '<span class=\'highlight\'>' + matched + '</span>';})
这是div
This is the text This is the text This is the text This is the text
This is the text This is the text This is the text This is the text
This is the text This is the text This is the text This is the text
现在我想创建一个按钮,单击该按钮并highlight
删除了类。我已经尝试过,document.getElementById("divId").className = ""
但是没有用。因为我是 JS 新手,所以现在经过我的努力,现在我将这个问题传递给 SO 专家。如何我可以从this
div 中的所有单词中删除类有
什么建议吗?