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.
我有一个需要呈现 HTML 标签的应用程序,例如<bold>abc<bold>
<bold>abc<bold>
但是当我这样做时<span data-win-bind='innerText: newText'></span>
<span data-win-bind='innerText: newText'></span>
然后输出类似于
<bold>abc</bold>而不是abc。为了实现这一目标该怎么做?
<bold>abc</bold>
在这里渲染是错误的
尝试绑定innerHTML而不是innerText
innerHTML
innerText
InnerText 将标签的内容检索并设置为纯文本,而 InnerHtml 检索并设置相同的内容,但采用 HTML 格式。
这是一个有相同讨论的微软网站
内部文本和 html
通过它:)