jquery非文本框复制
Posted romanticcrystal
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery非文本框复制相关的知识,希望对你有一定的参考价值。
function selectText(x) { if (document.selection) { var range = document.body.createTextRange();//ie range.moveToElementText(x); range.select(); } else if (window.getSelection) { var selection = window.getSelection(); var range = document.createRange(); selection.removeAllRanges(); range.selectNodeContents(x); selection.addRange(range); } } function cp(x) { selectText(x); document.execCommand("copy"); layer.msg("已复制"); } function gettxt(obj) { show(obj); } function show(txt) { layer.open({ type: 1, title: "URL", closeBtn: 0, shadeClose: true, skin: ‘yourclass‘, area: [‘30%‘, ‘auto‘], content: "<p onclick=‘cp(this);‘>"+txt+"</p>" }); }
使用方法:
直接在要复制的标签上添加click事件
onclick="gettxt($(this).attr(‘title‘));"
onclick=‘cp(this);‘
以上是关于jquery非文本框复制的主要内容,如果未能解决你的问题,请参考以下文章
jQuery 脚本在文本框中显示 NaN,如何删除 NaN? [复制]