http://www.firefox.net.cn/newforum/viewtopic.php?p=65191

解决方案 »

  1.   

    要不自己写个右键菜单把自己的copy、paste实现下?
      

  2.   


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>无标题文档</title>
    </head><body>
    <script type="text/javascript">
    function jsCopy(e) {
    var text = '' ;
    if(typeof e != 'string') {
    var iptEle = e.parentNode.getElementsByTagName('input')[0] ;
    iptEle.select() ;
    text = iptEle.value ;
    }
    else 
    text = e ;
    if(document.attachEvent) {
    window.clipboardData.setData('text',text)
    alert('已复制,请用Ctrl+V粘贴出来') ;
    }
    }
    </script><input type="text" size="6" maxlength="6" value="194564" onclick="jsCopy(this)"/>
    </body>
    </html>