JS-剪切板

复制内容到剪切板

BSL.CopyText('content')

参数必填说明
content指定要复制的内容
<a href="#" onclick="BSL.CopyText('复制内容复制内容复制内容')">复制内容</a>

复制当前网址到剪切板

BSL.CopyUrl()

<a href="#" onclick="BSL.CopyUrl()">复制当前网址</a>

得到当前剪切板的内容

BSL.getClipboard('callbackMethod')

参数必填说明
callbackMethod自定义回调函数。
<script>
	function getClipboard(result){
		alert(result);
	}
</script>
<a href="#" onclick="BSL.getClipboard('getClipboard')">当前剪切板内容</a>


2020-03-04 18:07:39

在线客服