On this page
Meta
class
A service that can be used to get and add meta tags.
class Meta {
addTag(tag: MetaDefinition, forceCreation: boolean = false): HTMLMetaElement | null
addTags(tags: MetaDefinition[], forceCreation: boolean = false): HTMLMetaElement[]
getTag(attrSelector: string): HTMLMetaElement | null
getTags(attrSelector: string): HTMLMetaElement[]
updateTag(tag: MetaDefinition, selector?: string): HTMLMetaElement | null
removeTag(attrSelector: string): void
removeTagElement(meta: HTMLMetaElement): void
}
Methods
addTag()
|
||||||
---|---|---|---|---|---|---|
|
tag |
MetaDefinition |
|
forceCreation |
boolean |
Optional. Default is |
Returns
HTMLMetaElement | null
|
||||||
---|---|---|---|---|---|---|
|
tags |
MetaDefinition[] |
|
forceCreation |
boolean |
Optional. Default is |
Returns
HTMLMetaElement[]
getTag()
|
|||
---|---|---|---|
|
attrSelector |
string |
Returns
HTMLMetaElement | null
|
|||
---|---|---|---|
|
attrSelector |
string |
Returns
HTMLMetaElement[]
updateTag()
|
||||||
---|---|---|---|---|---|---|
|
tag |
MetaDefinition |
|
selector |
string |
Optional. Default is |
Returns
HTMLMetaElement | null
removeTag()
|
|||
---|---|---|---|
|
attrSelector |
string |
Returns
void
removeTagElement()
|
|||
---|---|---|---|
|
meta |
HTMLMetaElement |
Returns
void
© 2010–2020 Google, Inc.
Licensed under the Creative Commons Attribution License 4.0.
https://v8.angular.io/api/platform-browser/Meta