jquery下div中textarea不显示滚动条,只需
overflow: hidden;如果dialog下还有滚动条,则需要在div上设置overflow: hidden;
如:
<div title="权限编辑" id="test" style="padding:0; margin:0;background-color: white;display: none;overflow: hidden;">
<textarea style="width:98%;height:93%;border:0 none;outline:none;overflow: hidden;"></textarea>
</div>
jquery下为:
$( "#test" ).dialog(
{
resizable: true, //是否可以重新调节窗口大小,true时可以调节窗口大小
width:1000,
height:407,
modal: true,
buttons: {
"保存": function() {
},
"取消": function() {
$( this ).dialog( "close" );
}
}
}
);