我尝试在 ui-select 的输入框中添加工具提示,但它不起作用。
input(type='hidden', ui-select2='userSelect2options', data-placeholder='All User', ng-model='selectedUsersForFilter', style='width:100%; margin-left:5px;',ng -readonly='isUserSelectDisabled', tooltip='请选择至少一个用户')
此外,我为上述相同的输入标签添加了简单的 HTML标题属性,而不是工具提示,最初它能够设置标题,但是当我尝试更改或删除该标题时,它对我不起作用。
input(type='hidden', ui-select2='userSelect2options', data-placeholder='All User', ng-model='selectedUsersForFilter', style='width:100%; margin-left:5px;',ng -readonly='isUserSelectDisabled', title ='请至少选择一个用户')
如何在 ui-select2 中为输入框添加工具提示?