Ext.MessageBox溢出问题

发布于 2024-11-17 01:57:13 字数 634 浏览 1 评论 0原文

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

思慕 2024-11-24 01:57:13

你的 div 风格如何?如果它具有指定的宽度和white-space: normal,则文本应该换行。

How is you div styled? If it has a specified width and white-space: normal, the text should wrap.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文