国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > JavaScript > 正文

jQuery簡(jiǎn)單實(shí)現(xiàn)點(diǎn)擊文本框復(fù)制內(nèi)容到剪貼板上的方法

2019-11-20 09:21:35
字體:
供稿:網(wǎng)友

本文實(shí)例講述了jQuery簡(jiǎn)單實(shí)現(xiàn)點(diǎn)擊文本框復(fù)制內(nèi)容到剪貼板上的方法。分享給大家供大家參考,具體如下:

//點(diǎn)擊文本框復(fù)制其內(nèi)容到剪貼板上方法function copyToClipboard(txt) {  if (window.clipboardData) {    window.clipboardData.clearData();    window.clipboardData.setData("Text", txt);    alert("已經(jīng)成功復(fù)制到剪帖板上!");  } else if (navigator.userAgent.indexOf("Opera") != -1) {    window.location = txt;  } else if (window.netscape) {    try {      netscape.security.PrivilegeManager.enablePrivilege("UniversalXPConnect");    } catch (e) {      alert("被瀏覽器拒絕!/n請(qǐng)?jiān)跒g覽器地址欄輸入'about:config'并回車/n然后將'signed.applets.codebase_principal_support'設(shè)置為'true'");    }    var clip = Components.classes['@mozilla.org/widget/clipboard;1'].createInstance(Components.interfaces.nsIClipboard);    if (!clip) return;    var trans = Components.classes['@mozilla.org/widget/transferable;1'].createInstance(Components.interfaces.nsITransferable);    if (!trans) return;    trans.addDataFlavor('text/unicode');    var str = new Object();    var len = new Object();    var str = Components.classes["@mozilla.org/supports-string;1"].createInstance(Components.interfaces.nsISupportsString);    var copytext = txt;    str.data = copytext;    trans.setTransferData("text/unicode", str, copytext.length * 2);    var clipid = Components.interfaces.nsIClipboard;    if (!clip) return false;    clip.setData(trans, null, clipid.kGlobalClipboard);    alert("已經(jīng)成功復(fù)制到剪帖板上!");  }}//點(diǎn)擊文本框復(fù)制其內(nèi)容到剪貼板上function setCopyLink() {  $("#txt_CopyLink").val(document.URL)  .focus(function () {    $(this).css({ "background-color": "#ddd" }).select();    copyToClipboard($("#txt_CopyLink").val());  }).blur(function () {    $(this).css({ "background-color": "#fff" });  });}

更多關(guān)于jQuery相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《jQuery常見事件用法與技巧總結(jié)》、《jQuery form操作技巧匯總》、《jQuery常用插件及用法總結(jié)》、《jQuery操作json數(shù)據(jù)技巧匯總》、《jQuery擴(kuò)展技巧總結(jié)》、《jQuery表格(table)操作技巧匯總》、《jQuery常見經(jīng)典特效匯總》、《jQuery動(dòng)畫與特效用法總結(jié)》及《jquery選擇器用法總結(jié)

希望本文所述對(duì)大家jQuery程序設(shè)計(jì)有所幫助。

發(fā)表評(píng)論 共有條評(píng)論
用戶名: 密碼:
驗(yàn)證碼: 匿名發(fā)表
主站蜘蛛池模板: 平遥县| 南溪县| 周宁县| 廊坊市| 资阳市| 吴堡县| 交口县| 陆丰市| 星子县| 莫力| 阳春市| 马尔康县| 柯坪县| 梅河口市| 安塞县| 彩票| 安阳县| 乌海市| 秦皇岛市| 临武县| 开封县| 湟中县| 泰宁县| 嘉峪关市| 瑞安市| 广南县| 常山县| 黔江区| 紫阳县| 玛纳斯县| 磐安县| 陆川县| 贵州省| 千阳县| 奎屯市| 莱州市| 若羌县| 乌拉特前旗| 天峻县| 漳浦县| 嵊州市|