选择js新行

问题描述 投票:0回答:1

我目前正在我选择的js中显示选择的值。

这里是景色enter image description here

您可以看到我的选择框不会呈现所有单词。我想在新行上查看文本值

我已经尝试过此代码,但似乎什么也没发生

有人可以告诉我我在想什么吗?

div#doctrine_doctrinecontent_attributes_topic_id_chosen {
    display: inline;
}
$('.chosen-select').chosen({
    allow_single_deselect: true,
    no_results_text: 'No results matched',
    width: '100%',
});
javascript css jquery-chosen
1个回答
6
投票

尝试在CSS文件中添加这两种样式。

.chosen-container-single .chosen-single {
  height: auto;
}

.chosen-container-single .chosen-single span {
    word-break: break-all;
    white-space: initial;
}

enter image description here

© www.soinside.com 2019 - 2024. All rights reserved.