// 兼容所有浏览器 function copyUrl(url) { if (navigator.userAgent.toLowerCase().indexOf('ie') > -1) { clipboardData.setData('Text', url); alert("该地址已复制到剪切板!"); } else { prompt("非IE内核浏览器,请复制以下地址:", url); } } <input type="button" value=" click" onclick="copyUrl('www.uuu9.com');" />