0

我正在尝试使用 html 导入 impex,它出现在没有类的网页中。例如这个 h1 类 (content-page__title) 没有出现。

UPDATE CMSParagraphComponent; $contentCV[unique = true]; uid[unique = true]; content[lang = $lang]

; ; CMSParagraph-FrequentQuestionsPage       ; "<h1 class='content-page__title'>Preguntas frecuentes</h1>"
4

1 回答 1

0

您使用了不正确的引号对......

像下面这样使用,

UPDATE CMSParagraphComponent; $contentCV[unique = true]; uid[unique = true]; content[lang = $lang]

; ; CMSParagraph-FrequentQuestionsPage       ; "<h1 class=""content-page__title"">Preguntas frecuentes</h1>"

你也可以使用像"这样的 html 编码。

参考下面的链接,

Escape_Double_Quotes

于 2021-07-28T18:01:03.320 回答