<INPUT TYPE="button" value="将剪切板内容输出到编辑器中" onclick="PastClipboardData()"><BR>
<iframe id="editor" src="about:blank"></iframe>
<SCRIPT LANGUAGE="JavaScript">
<!--
function PastClipboardData()
{
 editor.document.designMode = 'On';
 editor.document.write("<body></body>");
 editor.focus();
 editor.document.execCommand("paste","",null);}
//-->
</SCRIPT>