如何在textarea的i-os设备中显示垂直滚动条?

Duk*_*hoo 4 html scroll textarea

textarea中的垂直滚动条显示在IE,FF和Chrome中,但不显示在ipod/ipad等i-os设备中.

<textarea  id="termsConditions" cols="30" rows="5" readonly="readonly">Sample text sample           text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample</textarea>
Run Code Online (Sandbox Code Playgroud)

如何解决这个问题?

非常感谢提前.

yck*_*art 6

就像迈克尔哈尔平所说的那样.加入-webkit-overflow-scrolling: touch你的风格.

HTML

<textarea  id="termsConditions" cols="30" rows="5" readonly="readonly">Sample text sample           text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample text sample</textarea>
Run Code Online (Sandbox Code Playgroud)

CSS

#termsConditions {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}?
Run Code Online (Sandbox Code Playgroud)

DEMO