答案 0 :(得分:0)
检查后,您将尝试使用此meta
标记
<!DOCTYPE html>
<html>
<meta charset="UTF-8">
<body>
<select>
<option>< 1</option>
<option>>1</option>
</select>
</body>
</html>
&#13;
答案 1 :(得分:0)
在您的代码中加入UTF-8编码标准。它将帮助您的浏览器理解符号。并使用UTF-8代码用于尖括号(&lt;&gt;)。然后您的浏览器会将角括号视为符号,而不是将其视为html开始标记符号。
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
</head>
<body>
<select>
<option>< 1</option>
</select>
</body>
我认为上面的代码片段肯定会解决您的问题。
答案 2 :(得分:0)
UTF-8左尖括号符号:
UTF-8直角括号符号:〉
来源: https://www.fileformat.info/info/unicode/char/3009/index.htm
https://www.fileformat.info/info/unicode/char/3008/index.htm