我正在使用HTML5开发基于Web的应用程序。我有一个textarea,用于以只读模式显示一些文本。如果我使用xCode的iOS模拟器登录iPad,我无法查看。 如果在桌面上查看,文本会在浏览器上正确拖欠。
<textarea id="renderWidget" style="resize: none; display: none; min-height:70px; max-height:70px;" readonly="readonly"></textarea>
textarea的值在运行时根据用户输入填充。
为textarea增值的代码
$('#postWidget').click(function(){
$('#renderWidget').html('<iframe src='+serverUrl+'/renderWidgetSkel.jsp? widgetId='+jsWidgetExternalId+'" id="wiframe" style="width: 100%; height: 100%; border: 0px; overflow: hidden;"></iframe>'); });