Ext.MessageBox溢出问题
Ext.MessageBox.show({
title: '',
msg: '',
height:300,
width:500,
maxWidth:1000,
maxHeight:1000,
minWidth:500,
buttons: Ext.MessageBox.OKCANCEL,
multiline: true,
fn: showResultText,
value: something
});
function showResultText(btn, text){
if(btn=='ok'){
$.post(url, {clientcomment:text, orderid:orderid}, function(data){
$('div#something').html(data);
});
}
};
现在假设有人要输入一个非常长的字符串而不返回,返回的是一个非常长的水平字符串,它不会留在我放置的div中:(我真的不知道如何修复,我不想要溢出栏水平方向我希望它在到达 div 末尾时向下移动一行。
Ext.MessageBox.show({
title: '',
msg: '',
height:300,
width:500,
maxWidth:1000,
maxHeight:1000,
minWidth:500,
buttons: Ext.MessageBox.OKCANCEL,
multiline: true,
fn: showResultText,
value: something
});
function showResultText(btn, text){
if(btn=='ok'){
$.post(url, {clientcomment:text, orderid:orderid}, function(data){
$('div#something').html(data);
});
}
};
Now say if someone were to enter a very long string with no returns, what returns is a very long string horizontally, it will not stay in the div I put it :( I dont really know how to fix, I dont want an overflow bar horizontally I would like it to move down a line when it reaches the end of the div.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你的 div 风格如何?如果它具有指定的宽度和
white-space: normal
,则文本应该换行。How is you div styled? If it has a specified width and
white-space: normal
, the text should wrap.