akun/yii2-copy-text

yii2 copy-text

0.0.4 2019-08-16 08:36 UTC

This package is auto-updated.

Last update: 2024-09-16 20:59:50 UTC


README

使用说明

  • 单次使用
echo CopyText::widget([
    'text' => 'something to copy'
]);
  • 完整配置
echo CopyText::widget([
    'text' => [
        'msg' => 'something to copy',
        'tag' => 'span',
        'options' => [
            'class' => 'js-copy-target'
        ]
    ],
    'button' => [
        'msg' => 'copy',
        'tag' => 'a',
        'options' => [
            'class' => 'btn btn-primary js-copy-button'
        ]
    ],
    'copiedText' => 'copied'
]);