js动态赋值title及各种meta标签

2024年07月13日 建站教程

做的网站不是静态页面,所有的数据都是通过ajax读取的,那么titlekeywordsdescription

1、给title赋值

document.getElementById("title").innerHTML = web建站教程Title

2、给meta赋值

var meta = document.getElementsByTagName('meta');
meta["keywords"].setAttribute('content','web建站教程Keywords')
meta["description"].setAttribute('content','web建站教程Description')

本文链接:http://so.lmcjl.com/news/8383/

展开阅读全文
相关内容