选择器标题更改文本

Posted

技术标签:

【中文标题】选择器标题更改文本【英文标题】:Selectpicker title change text 【发布时间】:2016-02-02 05:01:40 【问题描述】:

我正在使用https://silviomoreto.github.io/bootstrap-select/。我正在使用多选下拉菜单。在选择某些项目时,它会显示其默认标题“x items selected”。我想将其文本更改为“x some_other_word selected。”。有人告诉我,如果这个插件提供任何更改标题文本的选项。

【问题讨论】:

【参考方案1】:

不要使用“计数格式”,而是使用

<select class="selectpicker" multiple data-selected-text-format="count>3">
 <option>Mustard</option>
  <option>Ketchup</option>
  <option>Relish</option>
  <option>Onions</option> </select>

或者您可以直接编辑插件并添加扩展选项来定义您的默认“选定”文本格式。

【讨论】:

"【参考方案2】:

将标题值添加到“x some_other_word selected”。

 <select class="selectpicker" title="x some_other_word selected.">
<option>Mustard</option>
<option>Ketchup</option>
<option>Relish</option>
</select>

【讨论】:

x 是选择的项目数,而不是一些随机变量。【参考方案3】:

你可以使用“data-count-selected-text”

<select class="selectpicker" multiple data-selected-text-format="count>3"
    data-count-selected-text= "0 some_other_word selected">
     <option>Mustard</option>
      <option>Ketchup</option>
      <option>Relish</option>
      <option>Onions</option>
</select>

【讨论】:

以上是关于选择器标题更改文本的主要内容,如果未能解决你的问题,请参考以下文章

更改时间选择器的文本颜色 [android]

使用选择器更改 TextView 文本颜色

更改日期选择器文本:大写月份

更改日期选择器的文本颜色

如何在swiftui中使用选择器更改文本大小

如何更改日期选择器中的文本大小?