Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在我的页面中包含一个 javascript/jquery 脚本,该脚本将自动从特定元素的内容生成元描述。但我不知道从哪里开始。这里有人可以指导我完成这个吗?
就像创建一个新的元标记一样简单,将它的 name 属性和 value 属性设置为目标元素的内容
$('<meta />').attr({ name: 'description', value: $('#idOfElementWidthDescriptionContent').text() }).appendTo('body');