http://www.csdn.net/Develop/Read_Article.asp?Id=8243

解决方案 »

  1.   

    <form name=form1>
    <input name=meizz value=梅花雨><br>
    <input type=button value=全选 onclick=document.form1.meizz.select()>
    <input type=button value=剪切 onclick=document.execCommand('Cut')>
    <input type=button value=拷贝 onclick=document.execCommand('Copy')>
    <input type=button value=粘贴 onclick=document.execCommand('Paste')>
    <input type=button value=保存 onclick=document.execCommand('SaveAs')>
    </form>
      

  2.   

    <html>
    <head>
    <title></title>
    <body>
    <center>
    <form name="jt">
    <textarea name="ups" rows=10 cols=95></textarea><br>
    <input type=button value=全选 onclick=document.jt.ups.select()> 
    <input type=button value=剪切 onclick=document.execCommand('Cut')> 
    <input type=button value=拷贝 onclick=document.execCommand('copy')>???? 
    <input type=button value=粘贴 onclick=document.execCommand('Paste')>????
    <input type=button value=保存 onclick=document.execCommand('SaveAs')> 
    </form>
    </center>
    </body>
    </html>
    在上面文本框中操作有问题 
    希望调用剪贴板(clipboard)的功能并给出代码
    再次请教
      

  3.   

    <form><input name=txt value="梅花雨换名成疏影横斜"><br>
    <input type=button value=拷贝 onclick="this.form.txt.select(); document.execCommand('Copy')">
    <input type=button value=粘贴 onclick="this.form.txt2.focus(); document.execCommand('Paste')">
    <br><input name=txt2>
    </form>
      

  4.   

    给你点提示
    用iframe做
    打开iframe的编辑模式来实现写字板
    你可以查查msdn。