前言:
今天看官们对“js修改网页标题”大约比较注意,姐妹们都需要剖析一些“js修改网页标题”的相关资讯。那么小编同时在网络上汇集了一些对于“js修改网页标题””的相关资讯,希望咱们能喜欢,各位老铁们快快来了解一下吧!<div class="fuClass"><h4 id="Title">jiajia</h4></div>
//创建新的元素
const newTitle=document.createElement('h1');
//添加id
newTitle.id="newTitle";
//内容
// newTitle.innerText="测试标题";
newTitle.appendChild(document.createTextNode('任务标题'));
//找到被替换的标签
const oldTitle=document.getElementById('Title');
//获取父级
const fuClass=document.querySelector('.fuClass');
//替换
fuClass.replaceChild(newTitle,oldTitle);
console.log(oldTitle);
版权声明:
本站文章均来自互联网搜集,如有侵犯您的权益,请联系我们删除,谢谢。