欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

js 實現(xiàn)復(fù)制到粘貼板的功能代碼

 更新時間:2010年05月13日 18:59:46   作者:  
主要是用到了 window.clipboardData.setData("Text",copyText);
他主要有兩個參數(shù):第一個是設(shè)置要復(fù)制的是一段文本,第二個參數(shù)是要復(fù)制具體的內(nèi)容,這個內(nèi)容可以從文本框中或使用innerHTML獲取。
簡單的實例代碼:
復(fù)制代碼 代碼如下:

<script type="text/javascript">
function copyData() {
var copyText = document.getElementById("ctl00_cpRight_txtUrl").value;
window.clipboardData.setData("Text",copyText);
}
</script>

<asp:TextBox ID="txtUrl" runat="server" Height="30px" Width="349px"></asp:TextBox>
<input id="btnCopyUrl" type="button" value="復(fù)制URL到粘貼板" onclick="copyData()" />
注:ctl00_cpRight_txtUrl這個ID其實是txtUrl生成頁面后自動生成的ID。

相關(guān)文章

最新評論