您的位置:首页 > 其它

发表文章时自动保存到剪贴板

2006-10-27 00:00 330 查看
frames.NewsContent.document.designMode = "On"
function submitcontent() {
window.clipboardData.setData('Text', frames.NewsContent.document.body.innerHTML);
}
setInterval("submitcontent()",2000)

[Ctrl+A 全选 注:如需引入外部Js需刷新才能执行]
eWebEditor调用方法
<input type="hidden" value="" name="NewsContent" >  
        <iframe name="eWebEditor" ID="eWebEditor" src="eWebEditor/eWebEditor.asp?Id=NewsContent" frameborder="0" scrolling="no" width="100%" HEIGHT="100%"></iframe>  
<script type="text/javascript">  
function submitcontent() {  
window.clipboardData.setData('Text',frames.eWebEditor.document.body.innerHTML);  
}  
</script>
<input  type="submit"  onclick="submitcontent();" value="确 定">
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐