我正在寻找一种可以制作 textarea 的跨浏览器解决方案:
- 仅在输入时换行
- 滚动条都隐藏,直到文本溢出
我已经尝试了几乎所有可以在SO中找到的东西......
失败#1:
textarea{
white-space:nowrap;
overflow: auto;
}
在 FF 中不起作用
失败#2:
textarea{
white-space:nowrap;
overflow: auto; // or scroll
}
+WRAP=OFF attribute
在这里我不能在 IE ( jsFiddle )中输入
失败#3:
textarea{
white-space:pre;
overflow: auto;
}
+WRAP=OFF attribute
如果我到达末尾,则在 IE 中自动换行