我需要用户能够选择(使用鼠标或键盘)选定的标签值,并能够以某种方式复制文本。在下面的示例代码中,我需要用户能够复制文本“ blue” /“ red”-
有什么建议吗?
答案 0 :(得分:0)
您可以这样做:
创建一个指令,以通过双击事件将项目的值复制到剪贴板:
app.directive('uiSelectCopy', [function(){
return {
restrict: 'A',
scope: {
$item: '=ngBind'
},
link: function ($scope, $elm) {
$elm.on('dblclick', function(){
let value = $scope.$item || this.innerText;
let input = angular.element(`<input value="${value}"/>`);
angular.element(document.body).append(input);
input[0].select();
document.execCommand('copy');
input.remove();
});
}
}
}])
然后将此指令添加到您的ui-select-match:
<ui-select multiple tagging tagging-label="(custom 'new' label)" ng-model="multipleDemo.colors" theme="bootstrap"
sortable="true" ng-disabled="disabled" style="width: 300px;" title="Choose a color">
<ui-select-match placeholder="Select colors...">
<span ng-bind="$item" ui-select-copy></span>
</ui-select-match>
<ui-select-choices repeat="color in availableColors | filter:$select.search">
{{color}}
</ui-select-choices>
</ui-select>
如果需要,您还可以将事件更改为单击。