admin管理员组文章数量:1344238
Im want to write copyright symbol in React ponent, but this doesnt work.
function Footer() {
return (
<footer>
<p>©</p>
</footer>
);
}
Im want to write copyright symbol in React ponent, but this doesnt work.
function Footer() {
return (
<footer>
<p>©</p>
</footer>
);
}
<p>©</p>
works in HTML online editor.
- Have you tried <p> © </p> – The KNVB Commented Sep 21, 2021 at 9:08
-
You're missing a
;
– Silviu Burcea Commented Sep 21, 2021 at 9:09 -
you missed the
;
© – Bravo Commented Sep 21, 2021 at 9:09 -
© Foo - 2021
– DecPK Commented Sep 21, 2021 at 9:09 -
1
You can use the unicode if you'd prefer:
<p>{'\u00a9'}</p>
. – Andy Commented Sep 21, 2021 at 9:11
3 Answers
Reset to default 10If you wrote what you had in HTML and ran it through a validator it would report:
Error: Named character reference was not terminated by a semicolon. (Or
&
should have been escaped as&
.)
Most HTML parsers perform a lot of error recovery. JSX is not so forgiving. The semi-colon on the end of a character reference is mandatory:
<p>©</p>
Alternatively, just use a copyright sign directly:
<p>©</p>
You can use ©
for the copyright symbol in React ponent.
function Footer() {
return (
<footer>
<p>©</p>
</footer>
);
}
use this tag it works event i used the same in HTML: © in JSX : © or direct ©
本文标签: javascriptHow to add copyright symbol in React componentStack Overflow
版权声明:本文标题:javascript - How to add copyright symbol in React component? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743746604a2531869.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论