实体转义符

it2024-01-07  60

<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>实体转义符</title> </head> <body> <p> aa bbb</p> <!--空格符--> <p>aa&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;bbb</p> <!--大于号--> <p>a&gt;b</p> <!--小于号--> <p>a&lt;b</p> <!--与号--> <p>a&amp;b</p> <!--乘号--> <p>a&times;b</p> <!--除号--> <p>a&divide;b</p> <!--版权号--> <p>XXXX&copy;xxxxx</p> </body> </html>

aa bbb

aa     bbb

a>b

a<b

a&b

a×b

a÷b

XXXX©xxxxx

最新回复(0)