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.
如何在文本框中输入中文。
我尝试将表单中的接受字符集设置为,accept-charset="Big5"但它仍然显示英文字符。
accept-charset="Big5"
我有这个
<form accept-charset="Big5" encoding="Big5" method="post"> <input type="text" name="test"> <input type="submit" name="submit"> </form>
我的问题是为什么它在打字时仍然显示英文字符。
您需要将输入法更改为中文输入法。
估计是带中文键盘的。
在文本框中输入中文就像在其他地方输入一样。它的工具取决于系统,基本上不是编程问题。例如,在许多系统中,您可以启用一种输入模式,您可以用拼音输入文本,然后在对应的中文字符中进行选择。
该charset参数与此无关。它指定表单数据传输中使用的字符编码。通常在网页上使用 UTF-8 比 Big5 更好。
charset