复制粘贴之插件(jquery.zclip.min.js)需要安装flash

 .line{margin-bottom:20px;}
 /* 复制提示 */
 .copy-tips{position:fixed;z-index:999;bottom:50%;left:50%;margin:0 0 -20px -80px;background-color:rgba(0, 0, 0, 0.2);filter:progid:DXImageTransform.Microsoft.Gradient(startColorstr=#30000000, endColorstr=#30000000);padding:6px;}
 .copy-tips-wrap{padding:10px 20px;text-align:center;border:1px solid #F4D9A6;background-color:#FFFDEE;font-size:14px;}
 <div class="line">          <a href="#none" onclick='copyBank(this)' class="copy-input"> <font color='red' size='4'>点击复制银行卡信息</font> </a>     <input  class="input" type="hidden" value="实验" /> </div>
 $(function(){
  /* 定义所有class为copy-input标签,点击后可复制class为input的文本 */
     $(".copy-input").zclip({
         path: "${rc.contextPath}/js/ZeroClipboard.swf",
         copy: function(){
         return $(this).parent().find(".input").val();
         },
         afterCopy:function(){/* 复制成功后的操作 */
             var $copysuc = $("<div class='copy-tips'><div class='copy-tips-wrap'>☺ 复制成功</div></div>");
             $("body").find(".copy-tips").remove().end().append($copysuc);
             $(".copy-tips").fadeOut(3000);
         }
     });
 });
上一篇:Java面试题之Class.forName的作用


下一篇:Starting MySQL.The server quit without updating PID file (xxxx.pid).[FAILED]